|
@@ -1,5 +1,6 @@
|
1
|
|
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2
|
|
- package="com.reactnativenavigation.playground">
|
|
1
|
+<manifest xmlns:tools="http://schemas.android.com/tools"
|
|
2
|
+ package="com.reactnativenavigation.playground"
|
|
3
|
+ xmlns:android="http://schemas.android.com/apk/res/android">
|
3
|
4
|
|
4
|
5
|
<uses-permission android:name="android.permission.INTERNET"/>
|
5
|
6
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
|
@@ -9,13 +10,15 @@
|
9
|
10
|
android:allowBackup="false"
|
10
|
11
|
android:icon="@mipmap/ic_launcher"
|
11
|
12
|
android:label="@string/app_name"
|
12
|
|
- android:theme="@style/AppTheme">
|
|
13
|
+ android:theme="@style/AppTheme"
|
|
14
|
+ android:usesCleartextTraffic="true"
|
|
15
|
+ tools:ignore="GoogleAppIndexingWarning">
|
13
|
16
|
<activity
|
14
|
17
|
android:name=".MainActivity"
|
15
|
18
|
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
|
16
|
|
- android:windowSoftInputMode="adjustResize"
|
17
|
19
|
android:label="@string/app_name"
|
18
|
|
- android:launchMode="singleTask">
|
|
20
|
+ android:launchMode="singleTask"
|
|
21
|
+ android:windowSoftInputMode="adjustResize">
|
19
|
22
|
<intent-filter>
|
20
|
23
|
<action android:name="android.intent.action.MAIN"/>
|
21
|
24
|
<category android:name="android.intent.category.LAUNCHER"/>
|