aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2017-07-03 22:34:21 +0200
committerPacien TRAN-GIRARD2017-07-03 22:34:21 +0200
commit24dd15ecda923f63ea1c855059f1d3b47bd1cd10 (patch)
tree068493a9a1d848f49f8f509f29532c8388905003
parent7dfc7b2fb2fb1006bf210ea6396c6e898e74d40e (diff)
downloadtincapp-24dd15ecda923f63ea1c855059f1d3b47bd1cd10.tar.gz
Suppress silly Google warning
-rw-r--r--app/src/main/AndroidManifest.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index a3f5569..6558873 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,5 +1,6 @@
1<?xml version="1.0" encoding="utf-8"?> 1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
3 package="org.pacien.tincapp"> 4 package="org.pacien.tincapp">
4 5
5 <uses-permission android:name="android.permission.INTERNET"/> 6 <uses-permission android:name="android.permission.INTERNET"/>
@@ -11,7 +12,8 @@
11 android:icon="@mipmap/ic_launcher" 12 android:icon="@mipmap/ic_launcher"
12 android:label="@string/app_label" 13 android:label="@string/app_label"
13 android:supportsRtl="true" 14 android:supportsRtl="true"
14 android:theme="@style/AppTheme"> 15 android:theme="@style/AppTheme"
16 tools:ignore="GoogleAppIndexingWarning">
15 17
16 <activity 18 <activity
17 android:name=".activities.StartActivity" 19 android:name=".activities.StartActivity"