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(include: ['*.jar'], dir: 'libs') 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' //tablayout compile 'com.flyco.tablayout:FlycoTabLayout_Lib:2.0.0@aar' //viewpager transforms compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar' //个人信息的那个条条 compile 'com.akexorcist:RoundCornerProgressBar:2.0.3' //wave implementation 'me.itangqi.waveloadingview:library:0.3.5' //计步 implementation project(':todaystepcounterlib') //打分ui compile 'com.github.CB-ysx:CBRatingBar:3.0.1' //折线 implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3' //searchview compile 'com.miguelcatalan:materialsearchview:1.4.0' //floatbuttom compile 'com.nightonke:boommenu:2.1.1' //recycler and card implementation 'com.android.support:recyclerview-v7:26.1.0' implementation 'com.android.support:cardview-v7:26.1.0' //混合式recyclerview compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30' //翻页view compile 'com.github.czy1121:turncardlistview:1.0.0' }