Skip to content

Commit dfb3392

Browse files
committed
Changing minSDK<29 appended options for client code
1 parent 512537f commit dfb3392

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

AndroidFilePickerLightLibrary/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ android {
2929
buildToolsVersion "30.0.0"
3030

3131
defaultConfig {
32-
minSdkVersion 26
32+
minSdkVersion 29
3333
targetSdkVersion 30
34-
versionCode 8
35-
versionName "1.0.7"
34+
versionCode 9
35+
versionName "1.0.8"
3636
}
3737

3838
compileOptions {

AndroidFilePickerLightLibrary/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
android:usesCleartextTraffic="false"
3737
android:installLocation="preferExternal"
3838
android:requestLegacyExternalStorage="true"
39-
android:preserveLegacyExternalStorage="true"
4039
android:largeHeap="true"
4140
>
41+
<!--android:preserveLegacyExternalStorage="true" : Causes problems with minSDK < 29 ... -->
4242

4343
<activity
4444
android:name=".FileChooserActivity"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ that the application set the option
102102
android:launchMode="singleTop"
103103
android:manageSpaceActivity=".MyAndroidProjectMainActivity"
104104
android:requestLegacyExternalStorage="true"
105-
android:preserveLegacyExternalStorage="true"
106105
android:allowBackup="true"
107106
>
108107
<!-- Complete the internals of the application tag (activities, etc.) below -->

0 commit comments

Comments
 (0)