|
|
@ -1,5 +1,6 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
package="gr.thmmy.mthmmy" |
|
|
|
android:installLocation="auto"> |
|
|
|
|
|
|
@ -9,7 +10,7 @@ |
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" /> |
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> |
|
|
|
|
|
|
|
|
|
|
|
<application |
|
|
|
android:name=".base.BaseApplication" |
|
|
|
android:allowBackup="true" |
|
|
@ -17,7 +18,9 @@ |
|
|
|
android:icon="@mipmap/ic_launcher" |
|
|
|
android:label="@string/app_name" |
|
|
|
android:supportsRtl="true" |
|
|
|
android:theme="@style/AppTheme"> |
|
|
|
android:requestLegacyExternalStorage="true" |
|
|
|
android:theme="@style/AppTheme" |
|
|
|
tools:ignore="UnusedAttribute"> |
|
|
|
<meta-data |
|
|
|
android:name="firebase_crashlytics_collection_enabled" |
|
|
|
android:value="false" /> |
|
|
@ -67,6 +70,7 @@ |
|
|
|
android:name=".activities.LoginActivity" |
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden" |
|
|
|
android:launchMode="singleTop" |
|
|
|
tools:ignore="LockedOrientationActivity" |
|
|
|
android:screenOrientation="portrait" |
|
|
|
android:theme="@style/AppTheme.NoActionBar" |
|
|
|
android:windowSoftInputMode="adjustPan" /> |
|
|
|