apply plugin: 'com.android.library'
|
android {
|
compileSdkVersion 27
|
//buildToolsVersion rootProject.ext.android.buildToolsVersion
|
|
defaultConfig {
|
minSdkVersion 14
|
targetSdkVersion 27
|
versionCode 1
|
versionName "1.0"
|
// javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
|
}
|
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
|
}
|
|
dependencies {
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
compileOnly 'com.google.code.gson:gson:2.2.4'
|
compileOnly 'com.tencent.bugly:crashreport:4.1.9.3'
|
}
|
|
sourceCompatibility = "7"
|
targetCompatibility = "7"
|