From b91136c3620e8c5af7cf2eaa5ef16e9c1f89a76c Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Mon, 25 Nov 2019 10:14:38 +0100 Subject: [PATCH 1/2] Disable android backup on the QA app Signed-off-by: Alice Gaudon --- src/qa/AndroidManifest.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/qa/AndroidManifest.xml diff --git a/src/qa/AndroidManifest.xml b/src/qa/AndroidManifest.xml new file mode 100644 index 0000000000..33ba737d83 --- /dev/null +++ b/src/qa/AndroidManifest.xml @@ -0,0 +1,26 @@ + + + + + + From b7876c4252216aaeb7163f56e6b866f9ad2d257a Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Mon, 25 Nov 2019 15:26:08 +0100 Subject: [PATCH 2/2] disable GoogleAppIndexingWarning lint check Signed-off-by: tobiasKaminsky --- build.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b3d3254d8b..2867606f03 100644 --- a/build.gradle +++ b/build.gradle @@ -105,7 +105,12 @@ android { abortOnError false htmlReport true htmlOutput file("$project.buildDir/reports/lint/lint.html") - disable 'MissingTranslation', 'GradleDependency', 'VectorPath', 'IconMissingDensityFolder', 'IconDensities' + disable 'MissingTranslation', + 'GradleDependency', + 'VectorPath', + 'IconMissingDensityFolder', + 'IconDensities', + 'GoogleAppIndexingWarning' } dexOptions {