2015-04-30 00:33:24 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.cyanogenmod.tests"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
|
2015-05-07 21:52:28 +00:00
|
|
|
<uses-permission android:name="cyanogenmod.permission.PUBLISH_CUSTOM_TILE" />
|
2015-06-29 17:44:41 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
|
2015-04-30 00:33:24 +00:00
|
|
|
|
|
|
|
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
|
2015-07-14 22:05:22 +00:00
|
|
|
<uses-library android:name="android.test.runner" />
|
2015-04-30 00:33:24 +00:00
|
|
|
<activity android:name=".customtiles.CMStatusBarTest"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-06-29 17:44:41 +00:00
|
|
|
<activity android:name=".profiles.ProfileTest"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-06-08 23:20:06 +00:00
|
|
|
<activity android:name=".versioning.VersioningTest"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-04-30 00:33:24 +00:00
|
|
|
<activity android:name=".customtiles.DummySettings"
|
|
|
|
android:label="@string/app_name" />
|
|
|
|
</application>
|
2015-07-14 22:05:22 +00:00
|
|
|
|
|
|
|
<instrumentation
|
|
|
|
android:name="android.test.InstrumentationTestRunner"
|
|
|
|
android:targetPackage="org.cyanogenmod.tests" />
|
2015-04-30 00:33:24 +00:00
|
|
|
</manifest>
|