build.gradle 417 B

1234567891011121314151617181920
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 22
  4. buildToolsVersion "22.0.1"
  5. defaultConfig {
  6. minSdkVersion 8
  7. targetSdkVersion 22
  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. }