apply plugin: 'com.android.library'
|
//apply plugin: 'com.github.dcendents.android-maven'
|
|
group = 'com.github.codbking'
|
|
android {
|
compileSdkVersion 30
|
buildToolsVersion "30.0.0"
|
|
defaultConfig {
|
minSdkVersion 9
|
targetSdkVersion 30
|
versionCode 1
|
versionName "1.0"
|
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
lintOptions {
|
abortOnError false
|
}
|
}
|
|
dependencies {
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
}
|
apply from: 'upload_local_lib_aar_to_maven.gradle'
|
|
//apply from: 'nexus-push.gradle'
|