44 lines
1.1 KiB
Groovy
44 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.github.aachartmodel.aainfographics.demo"
|
|
minSdkVersion 19
|
|
versionCode 1
|
|
versionName "1.0.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
android {
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':charts')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.20"
|
|
implementation "androidx.appcompat:appcompat:1.6.1"
|
|
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
|
|
implementation "androidx.coordinatorlayout:coordinatorlayout:1.2.0"
|
|
implementation "com.google.code.gson:gson:2.10.1"
|
|
} |