cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2013 The CyanogenMod Project |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Michael Bestas | c83309e | 2018-02-03 17:42:13 +0200 | [diff] [blame] | 18 | package="org.lineageos.setupwizard.tests"> |
cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 19 | <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> |
| 20 | <uses-permission android:name="android.permission.STATUS_BAR"/> |
| 21 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 22 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 23 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 24 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> > |
| 25 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/> |
| 26 | <uses-permission android:name="android.permission.INTERNET"/> |
| 27 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 28 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 29 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 30 | <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
| 31 | <uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" /> |
cretin45 | 6ea46dd | 2015-02-10 16:31:04 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" /> |
cretin45 | 0d31b31 | 2015-03-09 14:49:31 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" /> |
cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 34 | |
| 35 | <application android:icon="@drawable/icon"> |
| 36 | <uses-library android:name="android.test.runner" /> |
Michael Bestas | c83309e | 2018-02-03 17:42:13 +0200 | [diff] [blame] | 37 | <activity android:name="org.lineageos.setupwizard.tests.ManualTestActivity" |
cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 38 | android:label="@string/app_test" |
| 39 | android:theme="@android:style/Theme.Material.NoActionBar" |
| 40 | android:launchMode="singleTask"> |
| 41 | <intent-filter> |
| 42 | <action android:name="android.intent.action.MAIN" /> |
| 43 | <category android:name="android.intent.category.DEFAULT" /> |
| 44 | <category android:name="android.intent.category.LAUNCHER" /> |
| 45 | </intent-filter> |
| 46 | </activity> |
| 47 | </application> |
| 48 | |
| 49 | <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21" /> |
| 50 | |
| 51 | <instrumentation android:name="android.test.InstrumentationTestRunner" |
Michael Bestas | c83309e | 2018-02-03 17:42:13 +0200 | [diff] [blame] | 52 | android:targetPackage="org.lineageos.setupwizard" |
| 53 | android:label="Tests for LineageSetupWizard."/> |
cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 54 | |
| 55 | </manifest> |