apply plugin: 'com.android.application' apply plugin: 'android-apt' android { compileSdkVersion 26 buildToolsVersion "26.0.0" defaultConfig { applicationId "com.qhclh.ytzh" minSdkVersion 15 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 { compile fileTree(include: ['*.jar'], dir: 'libs') androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:26.+' testCompile 'junit:junit:4.12' ///< 黄油刀 compile 'com.jakewharton:butterknife:8.4.0' apt 'com.jakewharton:butterknife-compiler:8.4.0' ///< 图片加载 compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.android.support:support-v4:26.0.0-alpha1' compile 'com.android.support:design:26.0.0-alpha1' ///< 广播 compile 'org.greenrobot:eventbus:3.0.0' ///< 友盟 compile 'com.umeng.analytics:analytics:latest.integration' ///< 动态权限 compile 'pub.devrel:easypermissions:0.2.1' compile 'com.google.code.gson:gson:2.8.1' ///< 数据库 compile 'org.litepal.android:core:1.3.0' ///< 二维码扫描 compile 'com.journeyapps:zxing-android-embedded:3.5.0' compile 'com.google.zxing:core:3.3.0' ///< 轮播图 compile 'com.youth.banner:banner:1.4.10' compile project(':jsonrpc') compile 'com.android.support:cardview-v7:26.0.0-alpha1' }