apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { applicationId "com.example.ninefourone.nutritionmaster" minSdkVersion 19 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support:design:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' //butterknife implementation 'com.jakewharton:butterknife:8.8.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' //logger implementation 'com.orhanobut:logger:2.2.0' //超帅侧拉ui implementation 'com.mxn.soul:flowingdrawer-core:2.0.0' implementation 'com.nineoldandroids:library:2.4.0' //图片形状库 compile 'com.github.siyamed:android-shape-imageview:0.9.+@aar' //cardview compile 'com.android.support:cardview-v7:26.1.0' }