blob: 166374b604794cd97118e86f4dd6a6960e82e2f9 [file] [log] [blame]
Adnan Begovic9a3035b2015-05-01 02:27:34 -07001<?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 Begovic2383b602015-05-07 14:51:29 -07007 <uses-permission android:name="cyanogenmod.permission.PUBLISH_CUSTOM_TILE" />
Adnan Begovic9a3035b2015-05-01 02:27:34 -07008
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>