apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { applicationId "com.ynstkz.shitu.android" minSdkVersion 16 targetSdkVersion 26 versionCode 1 versionName "1.0" javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } } } signingConfigs { myconfig { keyAlias 'shitunet' keyPassword 'key_shitu' storePassword 'key_shitu' storeFile file('src\\main\\doc\\shitunet.jks') } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' signingConfig signingConfigs.myconfig } debug { debuggable true minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' signingConfig signingConfigs.myconfig } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':library') compile 'com.android.support:design:26.1.0' compile 'com.jakewharton:butterknife:7.0.1' compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.muddzdev:styleabletoast:2.0.1' //导航 compile 'com.amap.api:navi-3dmap:5.6.0_3dmap5.7.0' //定位 compile 'com.amap.api:location:3.8.0' }