26 lines
702 B
Groovy
26 lines
702 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "com.xxmassdeveloper.mpchartexample"
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 57
|
|
versionName '3.1.0'
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.appcompat:appcompat:1.0.2"
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation project(':MPChartLib')
|
|
}
|