1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 28 5 defaultConfig { 6 applicationId "com.xxmassdeveloper.mpchartexample" 7 minSdkVersion 16 8 targetSdkVersion 28 9 versionCode 57 10 versionName '3.1.0' 11 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 12 } 13 14 buildTypes { 15 release { 16 minifyEnabled false 17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 } 19 } 20} 21 22dependencies { 23 implementation "androidx.appcompat:appcompat:1.0.2" 24 implementation 'com.google.android.material:material:1.0.0' 25 implementation project(':MPChartLib') 26} 27