|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + xmlns:tools="http://schemas.android.com/tools" |
2 | 3 | package="com.akveo.kittenTricks" |
3 | 4 | android:versionCode="15" |
4 | 5 | android:versionName="1.0.9"> |
5 | 6 |
|
6 | 7 | <uses-permission android:name="android.permission.INTERNET" /> |
7 | | - <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> |
| 8 | + <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
| 9 | + <uses-permission |
| 10 | + android:name="android.permission.READ_PHONE_STATE" |
| 11 | + tools:node="remove" /> |
8 | 12 |
|
9 | 13 | <uses-sdk |
10 | 14 | android:minSdkVersion="16" |
11 | 15 | android:targetSdkVersion="22" /> |
12 | 16 |
|
13 | 17 | <application |
14 | | - android:name=".MainApplication" |
15 | | - android:allowBackup="true" |
16 | | - android:label="@string/app_name" |
17 | | - android:icon="@mipmap/ic_launcher" |
18 | | - android:theme="@style/AppTheme"> |
19 | | - <activity |
20 | | - android:name=".MainActivity" |
| 18 | + android:name=".MainApplication" |
| 19 | + android:allowBackup="true" |
| 20 | + android:icon="@mipmap/ic_launcher" |
21 | 21 | android:label="@string/app_name" |
22 | | - android:configChanges="keyboard|keyboardHidden|orientation|screenSize" |
23 | | - android:screenOrientation="portrait" |
24 | | - android:windowSoftInputMode="adjustPan"> |
25 | | - <intent-filter> |
26 | | - <action android:name="android.intent.action.MAIN" /> |
27 | | - <category android:name="android.intent.category.LAUNCHER" /> |
28 | | - </intent-filter> |
29 | | - </activity> |
30 | | - <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> |
| 22 | + android:theme="@style/AppTheme"> |
| 23 | + <activity |
| 24 | + android:name=".MainActivity" |
| 25 | + android:configChanges="keyboard|keyboardHidden|orientation|screenSize" |
| 26 | + android:label="@string/app_name" |
| 27 | + android:screenOrientation="portrait" |
| 28 | + android:windowSoftInputMode="adjustPan"> |
| 29 | + <intent-filter> |
| 30 | + <action android:name="android.intent.action.MAIN" /> |
| 31 | + <category android:name="android.intent.category.LAUNCHER" /> |
| 32 | + </intent-filter> |
| 33 | + </activity> |
| 34 | + <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> |
31 | 35 | </application> |
32 | 36 |
|
33 | 37 | </manifest> |
0 commit comments