28 lines
596 B
Groovy
28 lines
596 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
group = 'com.github.tom79'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdkVersion 33
|
|
versionCode 3
|
|
versionName "1.0.12"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.6.0'
|
|
}
|