Skip to content

Commit

Permalink
release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Sep 29, 2017
1 parent 512551e commit eaf70d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 1 addition & 3 deletions qmui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'

group = 'com.qmuiteam'
version = "1.0.3" // QMUI 发布到 bintray 的版本号
version = "1.0.4" // QMUI 发布到 bintray 的版本号

//noinspection GroovyMissingReturnStatement
android {
Expand All @@ -14,8 +14,6 @@ android {
defaultConfig {
minSdkVersion parent.ext.minSdkVersion
targetSdkVersion parent.ext.targetSdkVersion
versionCode 1
versionName "1.0"
// vectorDrawables.useSupportLibrary = true // 与 com.android.support:support-vector-drawable 搭配使用,禁掉 Android Studio 自动生成 png 的功能
}
buildTypes {
Expand Down
7 changes: 5 additions & 2 deletions qmuidemo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
apply plugin: 'com.android.application'

def cmd = 'git rev-list HEAD --count'
def gitVersion = cmd.execute().text.trim().toInteger()

android {
signingConfigs {
Properties properties = new Properties()
Expand All @@ -21,8 +24,8 @@ android {
applicationId "com.qmuiteam.qmuidemo"
minSdkVersion parent.ext.minSdkVersion
targetSdkVersion parent.ext.targetSdkVersion
versionCode 1
versionName "1.0.3"
versionCode gitVersion
versionName "1.0.4"
}
buildTypes {
debug {
Expand Down

0 comments on commit eaf70d5

Please sign in to comment.