Commit 96c252c6 by chengfengpiaopiao

jenkins sdk版本25

parent 48126f56
Showing with 9 additions and 4 deletions
...@@ -20,12 +20,12 @@ def getDate() { ...@@ -20,12 +20,12 @@ def getDate() {
android { android {
compileSdkVersion 23 compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion "23.0.3" buildToolsVersion rootProject.ext.compileSdkVersion
defaultConfig { defaultConfig {
applicationId "com.maile.jingcai" applicationId "com.maile.jingcai"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 23 targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1 versionCode 1
versionName APP_VERSION versionName APP_VERSION
manifestPlaceholders = [UMENG_CHANNEL_VALUE: "base"] //默认名称 manifestPlaceholders = [UMENG_CHANNEL_VALUE: "base"] //默认名称
......
...@@ -23,7 +23,12 @@ task clean(type: Delete) { ...@@ -23,7 +23,12 @@ task clean(type: Delete) {
} }
ext { ext {
//dependencies 项目以来 //版本
buildToolsVersion "25.0.1" //23.0.3
compileSdkVersion "25"
targetSdkVersion "25"
//项目依赖
ButterKnife = "6.1.0" ButterKnife = "6.1.0"
Retrofit = "2.0.2" Retrofit = "2.0.2"
loggingInterceptor = "3.2.0" loggingInterceptor = "3.2.0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment