diff --git a/app/build.gradle b/app/build.gradle index 3a8bf68..08b9e9e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ // Manifest version information! def versionMajor = 1 -def versionMinor = 2 -def versionPatch = 4 +def versionMinor = 3 +def versionPatch = 0 def versionBuild = 0 // bump for dogfood builds, public betas, etc. apply plugin: 'com.android.application' @@ -140,8 +140,8 @@ android { def apiVersion = variant.productFlavors.get(1).versionCode // set the composite code - output.versionCodeOverride = getVersionCode(serviceVersion * 10 + apiVersion) - output.setVersionNameOverride("${versionMajor}.${versionMinor}.${versionPatch}.${serviceVersion}${apiVersion}") + output.versionCodeOverride = getVersionCode(apiVersion * 10 + serviceVersion) + output.setVersionNameOverride("${versionMajor}.${versionMinor}.${versionPatch}.${versionBuild}.${apiVersion}${serviceVersion}") } } } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 23946e7..699d381 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,5 +1,8 @@ + package="com.app.missednotificationsreminder" + xmlns:tools="http://schemas.android.com/tools"> + +