aboutsummaryrefslogtreecommitdiffstats
path: root/samples/customtiles/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/customtiles/AndroidManifest.xml')
-rw-r--r--samples/customtiles/AndroidManifest.xml23
1 files changed, 0 insertions, 23 deletions
diff --git a/samples/customtiles/AndroidManifest.xml b/samples/customtiles/AndroidManifest.xml
deleted file mode 100644
index 9eaa717f..00000000
--- a/samples/customtiles/AndroidManifest.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.lineageos.samples.customtiles"
- android:versionCode="1"
- android:versionName="1.0">
-
- <uses-permission android:name="lineageos.permission.PUBLISH_CUSTOM_TILE" />
-
- <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
- <activity android:name="MainActivity"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
- </activity>
- <receiver android:name="TileReceiver" >
- <intent-filter>
- <action android:name="org.lineageos.samples.customtiles.ACTION_TOGGLE_STATE"/>
- </intent-filter>
- </receiver>
- </application>
-</manifest>