diff options
author | Felix Bechstein <f@ub0r.de> | 2017-08-02 11:15:31 +0200 |
---|---|---|
committer | Mohamed Zenadi <zeapo@users.noreply.github.com> | 2017-08-02 10:15:31 +0100 |
commit | e169235d961d93105f210d0c3c4dc29a21008c68 (patch) | |
tree | 1f684e80351d7b47662675485faef295ec6a281b /app/src/main/AndroidManifest.xml | |
parent | 37329a67f7f1fb009daeffa4844245be6f370ae0 (diff) |
Fix more lint (#325)
* fix/ignore lint errors, run lint on travis
* fix/ignore some lint warnings
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" /> |