Browse Source
Fix Uploads' Take Photo for Android 10
pull/68/head
Ezerous
5 years ago
No known key found for this signature in database
GPG Key ID: 262B2954BBA319E3
1 changed files with
6 additions and
2 deletions
-
app/src/main/AndroidManifest.xml
|
|
@ -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"> |
|
|
|
|
|
|
@ -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" /> |
|
|
|