Skip to content

Commit

Permalink
版本号:1.4.1 versionCode:11
Browse files Browse the repository at this point in the history
  • Loading branch information
maning committed Sep 5, 2016
1 parent 23a9fb3 commit 5fa71f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ android {
signingConfigs {//签名信息
release {
storeFile file("gank_mm.jks")
storePassword "123456"
keyAlias "Gank"
keyPassword "123456"
storePassword rootProject.ext.storePassword
keyAlias rootProject.ext.keyAlias
keyPassword rootProject.ext.keyPassword
}
}

Expand Down
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ ext {
buildToolsVersion = "23.0.2"
minSdkVersion = 14
targetSdkVersion = 23
versionCode = 10
versionName = "1.4.0"
versionCode = 11
versionName = "1.4.1"
storePassword = "123456"
keyAlias = "Gank"
keyPassword = "123456"
}

0 comments on commit 5fa71f0

Please sign in to comment.