Skip to content

Commit

Permalink
测试解决依赖库问题2
Browse files Browse the repository at this point in the history
  • Loading branch information
kangwei committed Nov 8, 2019
1 parent 4edfabd commit 1e7fa43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android {
compileSdkVersion 28
defaultConfig {
applicationId "com.kw.one"
minSdkVersion 24
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
Expand All @@ -29,7 +29,7 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(":arch")
api project(":arch")
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
Expand Down
6 changes: 3 additions & 3 deletions arch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {


defaultConfig {
minSdkVersion 24
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
Expand All @@ -35,6 +35,6 @@ dependencies {

implementation 'androidx.appcompat:appcompat:1.1.0'
testImplementation 'junit:junit:4.12'
api ('com.squareup.retrofit2:retrofit:2.5.0'){transitive=true}
api ('com.squareup.retrofit2:converter-gson:2.5.0'){transitive=true}
api 'com.squareup.retrofit2:retrofit:2.5.0'
api 'com.squareup.retrofit2:converter-gson:2.5.0'
}
3 changes: 0 additions & 3 deletions arch/src/main/res/values/strings.xml

This file was deleted.

0 comments on commit 1e7fa43

Please sign in to comment.