| 1234567891011121314151617181920 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 22
- buildToolsVersion "22.0.1"
- defaultConfig {
- minSdkVersion 8
- targetSdkVersion 22
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- }
- dependencies {
- compile project(':MPAndroidChart')
- }
|