Adnan Begovic | 104a15a | 2015-04-29 17:33:24 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="org.cyanogenmod.tests" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0"> |
| 6 | |
Adnan Begovic | 4f0c2c3 | 2015-05-07 14:52:28 -0700 | [diff] [blame] | 7 | <uses-permission android:name="cyanogenmod.permission.PUBLISH_CUSTOM_TILE" /> |
Adnan Begovic | cf0bfd3 | 2015-06-29 10:44:41 -0700 | [diff] [blame^] | 8 | <uses-permission android:name="android.permission.WRITE_SETTINGS"/> |
Adnan Begovic | 104a15a | 2015-04-29 17:33:24 -0700 | [diff] [blame] | 9 | |
| 10 | <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> |
| 11 | <activity android:name=".customtiles.CMStatusBarTest" |
| 12 | android:label="@string/app_name"> |
| 13 | <intent-filter> |
| 14 | <action android:name="android.intent.action.MAIN"/> |
| 15 | <category android:name="android.intent.category.LAUNCHER"/> |
| 16 | </intent-filter> |
| 17 | </activity> |
Adnan Begovic | cf0bfd3 | 2015-06-29 10:44:41 -0700 | [diff] [blame^] | 18 | <activity android:name=".profiles.ProfileTest" |
| 19 | android:label="@string/app_name"> |
| 20 | <intent-filter> |
| 21 | <action android:name="android.intent.action.MAIN"/> |
| 22 | <category android:name="android.intent.category.LAUNCHER"/> |
| 23 | </intent-filter> |
| 24 | </activity> |
Adnan Begovic | 757d564 | 2015-06-08 16:20:06 -0700 | [diff] [blame] | 25 | <activity android:name=".versioning.VersioningTest" |
| 26 | android:label="@string/app_name"> |
| 27 | <intent-filter> |
| 28 | <action android:name="android.intent.action.MAIN"/> |
| 29 | <category android:name="android.intent.category.LAUNCHER"/> |
| 30 | </intent-filter> |
| 31 | </activity> |
Adnan Begovic | 104a15a | 2015-04-29 17:33:24 -0700 | [diff] [blame] | 32 | <activity android:name=".customtiles.DummySettings" |
| 33 | android:label="@string/app_name" /> |
| 34 | </application> |
| 35 | </manifest> |