build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. android {
  5. compileSdkVersion rootProject.ext.compileSdkVersion
  6. buildToolsVersion rootProject.ext.buildToolsVersion
  7. defaultConfig {
  8. applicationId "com.github.aachartmodel.aainfographics.demo"
  9. minSdkVersion rootProject.ext.minSdkVersion
  10. targetSdkVersion rootProject.ext.targetSdkVersion
  11. versionCode 1
  12. versionName "1.0.0"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. android {
  21. lintOptions {
  22. abortOnError false
  23. }
  24. }
  25. }
  26. dependencies {
  27. implementation project(':charts')
  28. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10"
  29. implementation "androidx.appcompat:appcompat:1.2.0"
  30. implementation "androidx.constraintlayout:constraintlayout:2.0.2"
  31. implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
  32. implementation "com.google.code.gson:gson:2.8.6"
  33. }