mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-07 09:38:52 -06:00
25 lines
524 B
Groovy
25 lines
524 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion COMPILE_SDK_VERSION as Integer
|
|
|
|
defaultConfig {
|
|
minSdkVersion MIN_SDK_VERSION as Integer
|
|
targetSdkVersion TARGET_SDK_VERSION as Integer
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
}
|