blob: e58f59fb8a9d33e94b0d9b90a987a6f3e763330b [file] [log] [blame]
Adnan Begovic104a15a2015-04-29 17:33:24 -07001<?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 Begovic4f0c2c32015-05-07 14:52:28 -07007 <uses-permission android:name="cyanogenmod.permission.PUBLISH_CUSTOM_TILE" />
Adnan Begoviccf0bfd32015-06-29 10:44:41 -07008 <uses-permission android:name="android.permission.WRITE_SETTINGS"/>
Adnan Begovic104a15a2015-04-29 17:33:24 -07009
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 Begoviccf0bfd32015-06-29 10:44:41 -070018 <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 Begovic757d5642015-06-08 16:20:06 -070025 <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 Begovic104a15a2015-04-29 17:33:24 -070032 <activity android:name=".customtiles.DummySettings"
33 android:label="@string/app_name" />
34 </application>
35</manifest>