build.gradle 959 B

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