FIX: Some Android devices wouldnt allow writing files when user requested

This commit is contained in:
marcosrdz 2021-01-10 22:13:23 -05:00
parent e41be2aec5
commit 0b3127f0d3
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:requestLegacyExternalStorage="true"
android:usesCleartextTraffic="true"
android:theme="@style/AppTheme">

View File

@ -52,7 +52,7 @@ subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 28
compileSdkVersion 29
buildToolsVersion '28.0.0'
}
}