Skip to content

Commit

Permalink
:arrow-up: Bump versionCode to 11 and versionName to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ekigamba committed Jan 16, 2023
1 parent 3705d37 commit 8f6f724
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ subprojects {
ext.androidBuildToolsVersion = '29.0.3'
ext.androidMinSdkVersion = 19
ext.androidCompileSdkVersion = 30
ext.androidTargetSdkVersion = 30
ext.androidTargetSdkVersion = 31

ext.androidAnnotationsVersion = '3.0.1'
ext.androidAnnotationsAPIVersion = '3.0.1'
Expand Down
12 changes: 6 additions & 6 deletions opensrp-unicef-tunisia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,18 @@ android {
applicationVariants.all { variant ->
if (variant.name == "debug") {
variant.outputs.each { output ->
output.versionCodeOverride = 9
output.versionNameOverride = "0.2.5-debug"
output.versionCodeOverride = 10
output.versionNameOverride = "0.2.6-debug"
}
} else if (variant.name == "preview") {
variant.outputs.each { output ->
output.versionCodeOverride = 9
output.versionNameOverride = "0.2.5-preview"
output.versionCodeOverride = 10
output.versionNameOverride = "0.2.6-preview"
}
} else if (variant.name == "release") {
variant.outputs.each { output ->
output.versionCodeOverride = 10
output.versionNameOverride = "1.0.0"
output.versionCodeOverride = 11
output.versionNameOverride = "1.0.1"
}
}
}
Expand Down

0 comments on commit 8f6f724

Please sign in to comment.