diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index fed637d9..98884e13 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,14 +1,18 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="com.zeapo.pwdstore"> + xmlns:tools="http://schemas.android.com/tools" + package="com.zeapo.pwdstore"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> - <application android:allowBackup="true" android:icon="@drawable/ic_launcher" - android:label="@string/app_name" android:theme="@style/AppTheme"> + <application android:allowBackup="true" + android:icon="@drawable/ic_launcher" + android:label="@string/app_name" + android:theme="@style/AppTheme" + android:supportsRtl="true"> <activity android:name=".PasswordStore" android:label="@string/app_name" android:configChanges="orientation|screenSize"> <intent-filter> @@ -57,7 +61,8 @@ <activity android:name=".autofill.AutofillActivity" android:parentActivityName=".PasswordStore" android:documentLaunchMode="intoExisting" - android:excludeFromRecents="true"> + android:excludeFromRecents="true" + tools:ignore="UnusedAttribute"> <meta-data android:name="android.support.PARENT_ACTIVITY" android:value="com.zeapo.pwdstore.PasswordStore" /> |