Skip to content

Commit

Permalink
Hardcoding the versionName / versionCode for FDroid
Browse files Browse the repository at this point in the history
  • Loading branch information
BijoySingh committed Jan 28, 2019
1 parent 985d986 commit 44e1a53
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ apply plugin: 'com.github.zellius.shortcut-helper'
shortcutHelper.filePath = '../shortcuts.xml'

android {
compileSdkVersion rootProject.ext.appconfig_compile_sdk_version
buildToolsVersion rootProject.ext.appconfig_build_tool_version
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
applicationId "com.bijoysingh.quicknote"
minSdkVersion rootProject.ext.appconfig_min_os_version
targetSdkVersion rootProject.ext.appconfig_target_os_version
versionCode rootProject.ext.appconfig_version_code
versionName rootProject.ext.appconfig_version
minSdkVersion 17
targetSdkVersion 27
versionCode 111
versionName '6.6.3'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ buildscript {
ext.room_version = '1.0.0'
ext.android_support_version = '27.1.1'

ext.appconfig_version_code = 110
ext.appconfig_version = '6.6.2'
// NOTE: Keep this in sync with the build.gradle for app/
ext.appconfig_version_code = 111
ext.appconfig_version = '6.6.3'
ext.appconfig_min_os_version = 17
ext.appconfig_target_os_version = 27
ext.appconfig_build_tool_version = '27.0.3'
Expand Down

0 comments on commit 44e1a53

Please sign in to comment.