diff options
author | Matthew Wong <wongma7@outlook.com> | 2015-11-05 22:59:17 -0500 |
---|---|---|
committer | Matthew Wong <wongma@protonmail.ch> | 2015-11-07 20:16:56 -0500 |
commit | 4a6901b30928291ed0a09359a3506dce68633aeb (patch) | |
tree | 47c23e350d74bc8e76612a89b48b9503ce1f40c4 /app | |
parent | 28379439de6542d747fb9f2fdfb0eb8d261bd57e (diff) |
Separate service & main process since service should be always running by itself
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 3 |
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> |