aboutsummaryrefslogtreecommitdiff
path: root/app/src
diff options
context:
space:
mode:
authorMatthew Wong <wongma7@outlook.com>2015-11-05 22:59:17 -0500
committerMatthew Wong <wongma@protonmail.ch>2015-11-07 20:16:56 -0500
commit4a6901b30928291ed0a09359a3506dce68633aeb (patch)
tree47c23e350d74bc8e76612a89b48b9503ce1f40c4 /app/src
parent28379439de6542d747fb9f2fdfb0eb8d261bd57e (diff)
Separate service & main process since service should be always running by itself
Diffstat (limited to 'app/src')
-rw-r--r--app/src/main/AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 0789fd33..bc15eb08 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -46,7 +46,8 @@
</activity>
<service android:name=".autofill.AutofillService"
- android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
+ android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
+ android:process=":background">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>