Initial commit
diff --git a/Picker/AndroidManifest.xml b/Picker/AndroidManifest.xml
new file mode 100644
index 0000000..b5f85da
--- /dev/null
+++ b/Picker/AndroidManifest.xml
@@ -0,0 +1,15 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="me.phh.treble.overlaypicker">
+
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+ <application
+ android:label="@string/app_label">
+
+ <receiver android:name=".Starter">
+ <intent-filter>
+ <action android:name="android.intent.action.BOOT_COMPLETED"/>
+ </intent-filter>
+ </receiver>
+ </application>
+
+</manifest>