Package and version

This commit is contained in:
fekt
2022-11-30 23:11:18 -05:00
parent e3b8bb4a04
commit d30c6da23c
2 changed files with 5 additions and 5 deletions

View File

@@ -6,8 +6,8 @@ apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs.kotlin"
apply plugin: 'com.github.ben-manes.versions'
archivesBaseName = 'zcash-android-wallet'
group = 'cash.z.ecc.android'
archivesBaseName = 'hush-android-wallet'
group = 'hush.android'
version = Deps.versionName
android {

View File

@@ -9,9 +9,9 @@ object Deps {
const val compileSdkVersion = 31
const val minSdkVersion = 21
const val targetSdkVersion = 30
const val versionName = "1.0.0-alpha74"
const val versionCode = 1_00_00_174 // last digits are alpha(0XX) beta(2XX) rc(4XX) release(8XX). Ex: 1_08_04_401 is an release candidate build of version 1.8.4 and 1_08_04_800 would be the final release.
const val packageName = "cash.z.ecc.android"
const val versionName = "1.0.0"
const val versionCode = 1_00_00 // last digits are alpha(0XX) beta(2XX) rc(4XX) release(8XX). Ex: 1_08_04_401 is an release candidate build of version 1.8.4 and 1_08_04_800 would be the final release.
const val packageName = "hush.android"
object AndroidX {