1234567891011121314151617181920212223242526272829303132333435363738 |
- apply plugin: 'com.android.application'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- android {
- compileSdkVersion rootProject.ext.compileSdkVersion
- buildToolsVersion rootProject.ext.buildToolsVersion
- defaultConfig {
- applicationId "com.github.aachartmodel.aainfographics.demo"
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1
- versionName "1.0.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- android {
- lintOptions {
- abortOnError false
- }
- }
- }
- dependencies {
- implementation project(':charts')
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10"
- implementation "androidx.appcompat:appcompat:1.2.0"
- implementation "androidx.constraintlayout:constraintlayout:2.0.2"
- implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
- implementation "com.google.code.gson:gson:2.8.6"
- }
|