Adnan Begovic | 9a3035b | 2015-05-01 02:27:34 -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.samples.customtiles" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0"> |
| 6 | |
Adnan Begovic | 2383b60 | 2015-05-07 14:51:29 -0700 | [diff] [blame] | 7 | <uses-permission android:name="cyanogenmod.permission.PUBLISH_CUSTOM_TILE" /> |
Adnan Begovic | 9a3035b | 2015-05-01 02:27:34 -0700 | [diff] [blame] | 8 | |
| 9 | <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> |
| 10 | <activity android:name="MainActivity" |
| 11 | android:label="@string/app_name"> |
| 12 | <intent-filter> |
| 13 | <action android:name="android.intent.action.MAIN"/> |
| 14 | <category android:name="android.intent.category.LAUNCHER"/> |
| 15 | </intent-filter> |
| 16 | </activity> |
| 17 | <receiver android:name="TileReceiver" > |
| 18 | <intent-filter> |
| 19 | <action android:name="org.cyanogenmod.samples.customtiles.ACTION_TOGGLE_STATE"/> |
| 20 | </intent-filter> |
| 21 | </receiver> |
| 22 | </application> |
| 23 | </manifest> |