mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-21 18:55:12 +00:00
android 12
This commit is contained in:
parent
46cb058cab
commit
715eb9cf7a
2 changed files with 8 additions and 9 deletions
|
@ -133,7 +133,7 @@ dependencies {
|
|||
implementation("com.beust:klaxon:5.5")
|
||||
|
||||
// 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
|
||||
implementation("com.github.kittinunf.fuel:fuel:2.3.1")
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
<!-- is required for some Android 5.x devices -->
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
android:maxSdkVersion="22"
|
||||
tools:ignore="ScopedStorage" />
|
||||
|
||||
<queries>
|
||||
|
@ -32,13 +31,13 @@
|
|||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
tools:ignore="UnusedAttribute">
|
||||
android:supportsRtl="true">
|
||||
|
||||
<activity
|
||||
android:name=".ui.SplashScreenActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/SplashTheme">
|
||||
android:theme="@style/SplashTheme"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
|
@ -57,9 +56,9 @@
|
|||
<activity
|
||||
android:name=".ui.MainActivity"
|
||||
android:configChanges="layoutDirection|locale|keyboardHidden|orientation|screenSize"
|
||||
android:exported="true"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/DarkTheme">
|
||||
android:theme="@style/DarkTheme"
|
||||
android:exported="true">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
@ -76,8 +75,8 @@
|
|||
<provider
|
||||
android:name="androidx.core.content.FileProvider"
|
||||
android:authorities="${applicationId}.provider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true">
|
||||
android:grantUriPermissions="true"
|
||||
android:exported="false">
|
||||
|
||||
<meta-data
|
||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||
|
|
Loading…
Reference in a new issue