Skip to content

Commit

Permalink
feat: 添加配置
Browse files Browse the repository at this point in the history
  • Loading branch information
Xu Jiaji committed Sep 21, 2023
1 parent bd52e26 commit b87bbb0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.xujiaji.happybubbletest"
minSdkVersion 14
targetSdkVersion 29
versionCode 1
versionName "1.0"
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,9 @@ allprojects {

task clean(type: Delete) {
delete rootProject.buildDir
}

ext {
versionCode = 10206
versionName = "1.2.6"
}
3 changes: 2 additions & 1 deletion happy-bubble/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 29

versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}
Expand Down

0 comments on commit b87bbb0

Please sign in to comment.