Skip to content

Commit d7fd4fb

Browse files
committed
update commons to 4.6.0
1 parent de93f49 commit d7fd4fb

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ext {
4545
}
4646

4747
dependencies {
48-
implementation 'com.simplemobiletools:commons:4.5.2'
48+
implementation 'com.simplemobiletools:commons:4.6.0'
4949

5050
implementation files('../libs/RootTools.jar')
5151

app/src/main/kotlin/com/simplemobiletools/filemanager/activities/MainActivity.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,14 @@ class MainActivity : SimpleActivity() {
247247
}
248248

249249
private fun launchAbout() {
250+
val licenses = LICENSE_MULTISELECT or LICENSE_GLIDE or LICENSE_PATTERN or LICENSE_REPRINT
251+
250252
val faqItems = arrayListOf(
251253
FAQItem(R.string.faq_3_title_commons, R.string.faq_3_text_commons),
252254
FAQItem(R.string.faq_2_title_commons, R.string.faq_2_text_commons)
253255
)
254256

255-
startAboutActivity(R.string.app_name, LICENSE_MULTISELECT or LICENSE_GLIDE or LICENSE_PATTERN or LICENSE_REPRINT, BuildConfig.VERSION_NAME, faqItems)
257+
startAboutActivity(R.string.app_name, licenses, BuildConfig.VERSION_NAME, faqItems, true)
256258
}
257259

258260
override fun onBackPressed() {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.2.51'
4+
ext.kotlin_version = '1.2.60'
55

66
repositories {
77
jcenter()

0 commit comments

Comments
 (0)