Skip to content
This repository was archived by the owner on Jul 13, 2026. It is now read-only.

Commit c70d60f

Browse files
committed
Update SimpleStorage to 0.7.0
1 parent d5e63d7 commit c70d60f

6 files changed

Lines changed: 5 additions & 11 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2018-2021 Anggrayudi Hardiannicko A.
189+
Copyright © 2018-2021 Anggrayudi Hardiannicko A.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -326,11 +326,6 @@ If you want to include sounds from the external storage your app needs to reques
326326
`android.permission.READ_EXTERNAL_STORAGE` permission in its manifest.
327327
Don't forget to check this runtime permission before opening ringtone picker on API 23.
328328

329-
## Donation
330-
Any donation you give is really helpful for us to develop this library. It feels like energy from power stone.
331-
332-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=TGPGSY66LKUMN&source=url" target="_blank"><img alt="Donate with PayPal" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0"/></a>
333-
334329
## License
335330

336331
Copyright 2018-2021 Anggrayudi Hardiannicko A.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apply from: 'extensions.gradle'
33

44
buildscript {
5-
ext.kotlin_version = '1.5.0'
5+
ext.kotlin_version = '1.5.10'
66

77
repositories {
88
google()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ org.gradle.daemon=false
77
#kapt.use.worker.api=true
88
# ------- Library versions
99
PROCESSOR_VERSION=1.7
10-
MATERIAL_PREFERENCE_VERSION=3.7.0
10+
MATERIAL_PREFERENCE_VERSION=3.7.1

materialpreference/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies {
4848
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
4949
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
5050

51-
api "com.anggrayudi:storage:0.6.0"
51+
api "com.anggrayudi:storage:0.7.0"
5252
// api("com.anggrayudi:storage:0.6.0-SNAPSHOT") { changing = true }
5353
}
5454

materialpreference/src/main/java/com/anggrayudi/materialpreference/FolderPreference.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,10 @@ open class FolderPreference @Keep @JvmOverloads constructor(
8282
}
8383
} else {
8484
fragment.storageHelper.run {
85-
requestCodeFolderPicker = REQUEST_CODE_STORAGE_GET_FOLDER
8685
onFolderSelected = { _, folder ->
8786
this@FolderPreference.folder = folder.getAbsolutePath(context)
8887
}
89-
openFolderPicker()
88+
openFolderPicker(REQUEST_CODE_STORAGE_GET_FOLDER)
9089
}
9190
}
9291
}

0 commit comments

Comments
 (0)