Update build

This commit is contained in:
Kevin Gorham 2019-06-04 09:54:12 -04:00
parent df5b20cc38
commit 9e4a354bfc
No known key found for this signature in database
GPG Key ID: ABA38E928749A19E
2 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ apply plugin: 'com.google.gms.google-services'
android { android {
compileSdkVersion buildConfig.compileSdkVersion compileSdkVersion buildConfig.compileSdkVersion
defaultConfig { defaultConfig {
applicationId "cash.z.android.wallet" applicationId "cash.z.android.zcon1"
minSdkVersion buildConfig.minSdkVersion minSdkVersion buildConfig.minSdkVersion
targetSdkVersion buildConfig.targetSdkVersion targetSdkVersion buildConfig.targetSdkVersion
versionCode 20 // todo: change this to 1_00_04 format, once we graduate beyond zero for the major version number because leading zeros indicate on octal number. versionCode 20 // todo: change this to 1_00_04 format, once we graduate beyond zero for the major version number because leading zeros indicate on octal number.
@ -31,13 +31,13 @@ android {
// product flavor names cannot start with the word "test" because they would clash with other targets // product flavor names cannot start with the word "test" because they would clash with other targets
zcashtestnet { zcashtestnet {
dimension 'network' dimension 'network'
applicationId 'cash.z.android.wallet.testnet' applicationId 'cash.z.android.zcon1.testnet'
matchingFallbacks = ['debug', 'zcashtestnet'] matchingFallbacks = ['debug', 'zcashtestnet']
} }
zcashmainnet { zcashmainnet {
dimension 'network' dimension 'network'
applicationId 'cash.z.android.wallet.mainnet' applicationId 'cash.z.android.zcon1.mainnet'
matchingFallbacks = ['release', 'zcashmainnet'] matchingFallbacks = ['release', 'zcashmainnet']
} }
} }

View File

@ -70,8 +70,8 @@ internal object SynchronizerModule {
@JvmStatic @JvmStatic
@Provides @Provides
@Singleton @Singleton
fun provideDownloader(@Named(PREFS_SERVER_NAME) server: String, twigger: Twig): CompactBlockStream { fun provideDownloader(@Named(PREFS_SERVER_NAME) server: String): CompactBlockStream {
return CompactBlockStream(server, COMPACT_BLOCK_PORT, twigger) return CompactBlockStream(server, COMPACT_BLOCK_PORT)
} }
@JvmStatic @JvmStatic