Skip to content

Commit

Permalink
Bump to v0.110
Browse files Browse the repository at this point in the history
  • Loading branch information
agnostic-apollo committed Apr 15, 2021
1 parent 3af5730 commit a6ae656
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Expand Up @@ -26,8 +26,8 @@ android {
applicationId "com.termux"
minSdkVersion project.properties.minSdkVersion.toInteger()
targetSdkVersion project.properties.targetSdkVersion.toInteger()
versionCode 109
versionName "0.109"
versionCode project.properties.termuxVersionCode.toInteger()
versionName project.properties.termuxVersion

manifestPlaceholders.TERMUX_PACKAGE_NAME = "com.termux"
manifestPlaceholders.TERMUX_APP_NAME = "Termux"
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Expand Up @@ -15,6 +15,9 @@
org.gradle.jvmargs=-Xmx2048M
android.useAndroidX=true

termuxVersion=0.110
termuxVersionCode=110

minSdkVersion=24
targetSdkVersion=28
ndkVersion=22.0.7026061
Expand Down
2 changes: 1 addition & 1 deletion terminal-emulator/build.gradle
Expand Up @@ -63,7 +63,7 @@ publishing {
bar(MavenPublication) {
groupId 'com.termux'
artifactId 'terminal-emulator'
version '0.109'
version project.properties.termuxVersion
artifact(sourceJar)
artifact("$buildDir/outputs/aar/terminal-emulator-release.aar")
}
Expand Down
2 changes: 1 addition & 1 deletion terminal-view/build.gradle
Expand Up @@ -42,7 +42,7 @@ publishing {
bar(MavenPublication) {
groupId 'com.termux'
artifactId 'terminal-view'
version '0.109'
version project.properties.termuxVersion
artifact(sourceJar)
artifact("$buildDir/outputs/aar/terminal-view-release.aar")
}
Expand Down
2 changes: 1 addition & 1 deletion termux-shared/build.gradle
Expand Up @@ -55,7 +55,7 @@ publishing {
bar(MavenPublication) {
groupId 'com.termux'
artifactId 'termux-shared'
version '0.109'
version project.properties.termuxVersion
artifact(sourceJar)
artifact("$buildDir/outputs/aar/termux-shared-release.aar")
}
Expand Down

0 comments on commit a6ae656

Please sign in to comment.