build.gradle 417 B

1234567891011121314151617181920
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 24
  4. buildToolsVersion "25.0.0"
  5. defaultConfig {
  6. minSdkVersion 9
  7. targetSdkVersion 24
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  13. }
  14. }
  15. }
  16. dependencies {
  17. compile project(':MPAndroidChart')
  18. }