|
@@ -1,37 +1,36 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
|
+<manifest
|
|
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
package="me.vadik.knigopis">
|
|
package="me.vadik.knigopis">
|
|
|
|
|
|
|
|
- <uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
- <uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
|
|
|
+ <uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
+ <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
|
|
|
|
|
|
|
<application
|
|
<application
|
|
|
android:name=".App"
|
|
android:name=".App"
|
|
|
- android:allowBackup="true"
|
|
|
|
|
- android:fullBackupContent="false"
|
|
|
|
|
|
|
+ android:allowBackup="false"
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
android:label="@string/app_name"
|
|
android:label="@string/app_name"
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
android:supportsRtl="true"
|
|
android:supportsRtl="true"
|
|
|
android:theme="@style/AppTheme"
|
|
android:theme="@style/AppTheme"
|
|
|
- tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
|
|
|
+ tools:ignore="GoogleAppIndexingWarning"
|
|
|
|
|
+ tools:replace="android:allowBackup">
|
|
|
|
|
|
|
|
<activity
|
|
<activity
|
|
|
android:name=".MainActivity"
|
|
android:name=".MainActivity"
|
|
|
android:label="@string/app_name">
|
|
android:label="@string/app_name">
|
|
|
<intent-filter>
|
|
<intent-filter>
|
|
|
- <action android:name="android.intent.action.MAIN" />
|
|
|
|
|
- <category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
|
|
+ <action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
+ <category android:name="android.intent.category.LAUNCHER"/>
|
|
|
</intent-filter>
|
|
</intent-filter>
|
|
|
</activity>
|
|
</activity>
|
|
|
|
|
|
|
|
- <activity
|
|
|
|
|
- android:name=".BookActivity"
|
|
|
|
|
- android:label="@string/book_edit_title" />
|
|
|
|
|
|
|
+ <activity android:name=".BookActivity"/>
|
|
|
|
|
|
|
|
<activity
|
|
<activity
|
|
|
android:name="ru.ulogin.sdk.UloginAuthActivity"
|
|
android:name="ru.ulogin.sdk.UloginAuthActivity"
|
|
|
- android:configChanges="orientation|screenSize" />
|
|
|
|
|
|
|
+ android:configChanges="orientation|screenSize"/>
|
|
|
</application>
|
|
</application>
|
|
|
</manifest>
|
|
</manifest>
|