|
@@ -1,5 +1,6 @@
|
|
|
-<?xml version="1.0" encoding="utf-8" ?>
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
+
|
|
|
<application
|
|
|
android:allowBackup="true"
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
@@ -7,6 +8,7 @@
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
android:supportsRtl="true"
|
|
|
android:theme="@style/AppTheme">
|
|
|
+
|
|
|
<activity
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
|
|
|
android:name=".MainActivity"
|
|
@@ -14,10 +16,12 @@
|
|
|
android:theme="@style/AppTheme.NoActionBarLaunch"
|
|
|
android:launchMode="singleTask"
|
|
|
android:exported="true">
|
|
|
+
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
</intent-filter>
|
|
|
+
|
|
|
</activity>
|
|
|
|
|
|
<provider
|
|
@@ -25,7 +29,9 @@
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
android:exported="false"
|
|
|
android:grantUriPermissions="true">
|
|
|
- <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
|
|
|
+ <meta-data
|
|
|
+ android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
+ android:resource="@xml/file_paths"></meta-data>
|
|
|
</provider>
|
|
|
</application>
|
|
|
|