tobiasKaminsky 7 years ago
parent
commit
0a577b9fd6
2 changed files with 6 additions and 3 deletions
  1. 1 1
      lint.xml
  2. 5 2
      src/debug/AndroidManifest.xml

+ 1 - 1
lint.xml

@@ -8,7 +8,7 @@
     <issue id="UnusedResources">
         <ignore regexp="store_short_desc|store_full_desc|store_short_dev_desc|store_full_dev_desc" />
         <ignore
-            regexp="screenshot_01_grid_view|screenshot_02_list_view|screenshot_03_drawer|screenshot_04_multiple_accounts|screenshot_05_autoUpload|screenshot_06_davdroid"/>
+            regexp="screenshot_01_gridView|screenshot_02_listView|screenshot_03_drawer|screenshot_04_accounts|screenshot_05_autoUpload|screenshot_06_davdroid"/>
     </issue>
     
     <issue id="MissingQuantity">

+ 5 - 2
src/debug/AndroidManifest.xml

@@ -1,4 +1,5 @@
-<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+<manifest xmlns:tools="http://schemas.android.com/tools"
+          xmlns:android="http://schemas.android.com/apk/res/android">
     <!-- Allows unlocking your device and activating its screen so UI tests can succeed -->
     <uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
     <uses-permission android:name="android.permission.WAKE_LOCK"/>
@@ -11,5 +12,7 @@
     <uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
 
     <application
-        android:testOnly="false"/>
+        android:testOnly="false"
+        android:allowBackup="false"
+        tools:ignore="GoogleAppIndexingWarning"/>
 </manifest>