Skip to content

Commit

Permalink
fix download libutils failed
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangdongguo committed Jan 19, 2020
1 parent e405a16 commit 61a9cc1
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions libutils/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 28
buildToolsVersion "29.0.2"


compileSdkVersion rootProject.ext.versionCompiler
defaultConfig {
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.versionTarget
versionCode 2
versionName rootProject.ext.versionNameString

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
Expand All @@ -22,6 +19,11 @@ android {
}
}

compileOptions {
sourceCompatibility rootProject.ext.javaSourceCompatibility
targetCompatibility rootProject.ext.javaTargetCompatibility
}

}

dependencies {
Expand Down

0 comments on commit 61a9cc1

Please sign in to comment.