Skip to content

Commit

Permalink
[message]complie 改为api和implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
liuce committed Oct 15, 2020
1 parent 3a65c14 commit 634ac2e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ android {
}

dependencies {
compile 'com.alibaba:fastjson:1.1.55.android'
compile project(':library:WheelPicker')
compile project(':library:FilePicker')
compile project(':library:ColorPicker')
compile project(':library:MultiplePicker')
implementation 'com.alibaba:fastjson:1.1.55.android'
implementation project(':library:WheelPicker')
implementation project(':library:FilePicker')
implementation project(':library:ColorPicker')
implementation project(':library:MultiplePicker')
// compile files('libs/AndroidPicker-1.5.6.jar')
// compile('cn.qqtheme.framework:WheelPicker:latest.release') {
// exclude group: 'com.android.support'
Expand Down
2 changes: 1 addition & 1 deletion library/ColorPicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
}

dependencies {
compile project(":library:Common")
api project(":library:Common")
}

android {
Expand Down
2 changes: 1 addition & 1 deletion library/FilePicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ ext {
}

dependencies {
compile project(":library:Common")
api project(":library:Common")
}
4 changes: 2 additions & 2 deletions library/ImagePicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ ext {
}

dependencies {
compile 'com.squareup.picasso:picasso:latest.release'
compile project(":library:Common")
implementation 'com.squareup.picasso:picasso:latest.release'
implementation project(":library:Common")
}
2 changes: 1 addition & 1 deletion library/MultiplePicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ ext {
}

dependencies {
compile project(":library:Common")
api project(":library:Common")
}
2 changes: 1 addition & 1 deletion library/WheelPicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ ext {
}

dependencies {
compile project(":library:Common")
api project(":library:Common")
}

0 comments on commit 634ac2e

Please sign in to comment.