Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lublin <daniel@lublin.se>2022-02-20 10:20:46 +0300
committerDaniel Lublin <daniel@lublin.se>2022-02-21 15:44:04 +0300
commit513c6949f41a3db3c63f41a14b09b0ac66d8130c (patch)
treec4fe821b1adddcf275d6e1693f460cec03ef4346
parent30e43a5a6d873f427d4f6ae0380b749fdf8cee55 (diff)
Bump to SDK 30
-rw-r--r--app/build.gradle6
-rw-r--r--app/src/main/AndroidManifest.xml1
2 files changed, 3 insertions, 4 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 275dbe9..26a5865 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -53,13 +53,11 @@ allprojects {
}
android {
- compileSdkVersion 29
+ compileSdkVersion 30
defaultConfig {
minSdkVersion 14
- // TODO bumping to 30 will break writing to external storage, see
- // requestLegacyExternalStorage in app/src/main/AndroidManifest.xml
- targetSdkVersion 29
+ targetSdkVersion 30
multiDexEnabled true
applicationId "se.lublin.mumla"
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index d13f979..f48e1a1 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -41,6 +41,7 @@
android:label="@string/app_name"
android:theme="@style/Theme.Mumla"
android:requestLegacyExternalStorage="true" >
+ <!-- TODO ^^^ fix, on sdk 30, no more requestlegacyexternalstorage ! -->
<activity android:name=".wizard.WizardActivity" />
<activity