0
0
Fork 0
mirror of https://github.com/YTVanced/VancedManager synced 2024-11-25 04:35:12 +00:00

android 12

This commit is contained in:
X1nto 2021-10-08 14:48:32 +04:00
parent 46cb058cab
commit 715eb9cf7a
2 changed files with 8 additions and 9 deletions

View file

@ -133,7 +133,7 @@ dependencies {
implementation("com.beust:klaxon:5.5") implementation("com.beust:klaxon:5.5")
// Crowdin // Crowdin
implementation("com.github.crowdin.mobile-sdk-android:sdk:1.4.0") implementation("com.github.crowdin.mobile-sdk-android:sdk:1.4.7")
// HTTP networking // HTTP networking
implementation("com.github.kittinunf.fuel:fuel:2.3.1") implementation("com.github.kittinunf.fuel:fuel:2.3.1")

View file

@ -12,7 +12,6 @@
<!-- is required for some Android 5.x devices --> <!-- is required for some Android 5.x devices -->
<uses-permission <uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="22"
tools:ignore="ScopedStorage" /> tools:ignore="ScopedStorage" />
<queries> <queries>
@ -32,13 +31,13 @@
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">
tools:ignore="UnusedAttribute">
<activity <activity
android:name=".ui.SplashScreenActivity" android:name=".ui.SplashScreenActivity"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/SplashTheme"> android:theme="@style/SplashTheme"
android:exported="true">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
@ -57,9 +56,9 @@
<activity <activity
android:name=".ui.MainActivity" android:name=".ui.MainActivity"
android:configChanges="layoutDirection|locale|keyboardHidden|orientation|screenSize" android:configChanges="layoutDirection|locale|keyboardHidden|orientation|screenSize"
android:exported="true"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/DarkTheme"> android:theme="@style/DarkTheme"
android:exported="true">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
@ -76,8 +75,8 @@
<provider <provider
android:name="androidx.core.content.FileProvider" android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider" android:authorities="${applicationId}.provider"
android:exported="false" android:grantUriPermissions="true"
android:grantUriPermissions="true"> android:exported="false">
<meta-data <meta-data
android:name="android.support.FILE_PROVIDER_PATHS" android:name="android.support.FILE_PROVIDER_PATHS"