File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
src/main/java/com/sw926/imagefileselector Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ android {
25
25
26
26
dependencies {
27
27
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
28
- testImplementation ' junit:junit:4.12 '
28
+ testImplementation ' junit:junit:4.13 '
29
29
implementation project(' :library' )
30
30
implementation ' androidx.appcompat:appcompat:1.1.0'
31
31
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. kotlin_version = ' 1.3.50 '
4
+ ext. kotlin_version = ' 1.3.61 '
5
5
repositories {
6
6
jcenter()
7
7
google()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:3.5.2 '
10
+ classpath ' com.android.tools.build:gradle:3.5.3 '
11
11
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
12
12
13
13
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ POM_DEVELOPER_NAME=sunwei
21
21
POM_LICENCE_URL =http\://www.apache.org/licenses/LICENSE-2.0.txt
22
22
POM_DESCRIPTION =Android image file selector
23
23
POM_LICENCE_NAME =The Apache Software License, Version 2.0
24
- VERSION_NAME =1.0.17 -SNAPSHOT
25
- VERSION_CODE =20
24
+ VERSION_NAME =1.0.18 -SNAPSHOT
25
+ VERSION_CODE =21
26
26
POM_SCM_DEV_CONNECTION =scm\:https\://github.com/sw926/ImageFileSelector.git
27
27
POM_URL =https\://github.com/sw926/ImageFileSelector
28
28
POM_SCM_CONNECTION =scm\:https\://github.com/sw926/ImageFileSelector.git
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ android {
27
27
28
28
dependencies {
29
29
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
30
- testImplementation ' junit:junit:4.12 '
31
- compileOnly ' androidx.fragment:fragment:1.1.0 '
30
+ testImplementation ' junit:junit:4.13 '
31
+ compileOnly ' androidx.fragment:fragment:1.2.1 '
32
32
api " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
33
33
}
34
34
// https://raw.githubusercontent.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class ImagePickHelper(private val mContext: Context) {
29
29
30
30
private val mPermissionsHelper = PermissionsHelper ()
31
31
32
- private val mPermissionCallback = { isGranted: Boolean ->
32
+ private val mPermissionCallback: ( Boolean ) -> Unit = { isGranted: Boolean ->
33
33
if (isGranted) {
34
34
startSelect()
35
35
} else {
You can’t perform that action at this time.
0 commit comments