aboutsummaryrefslogtreecommitdiff
path: root/FillService/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'FillService/AndroidManifest.xml')
-rw-r--r--FillService/AndroidManifest.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/FillService/AndroidManifest.xml b/FillService/AndroidManifest.xml
new file mode 100644
index 0000000..f9128e1
--- /dev/null
+++ b/FillService/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="foo.bar.fill" >
+
+ <application>
+
+ <service android:name=".FillService"
+ android:permission="android.permission.BIND_AUTOFILL">
+ <intent-filter>
+ <action android:name="android.service.autofill.AutofillService" />
+ </intent-filter>
+ </service>
+
+ <activity android:name=".AuthActivity"/>
+ <activity android:name=".FirstActivity"/>
+ <activity android:name=".SecondActivity"/>
+
+ </application>
+
+</manifest>
+