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 {
compileSdkVersion buildConfig.compileSdkVersion
defaultConfig {
applicationId "cash.z.android.wallet"
applicationId "cash.z.android.zcon1"
minSdkVersion buildConfig.minSdkVersion
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.
@ -31,13 +31,13 @@ android {
// product flavor names cannot start with the word "test" because they would clash with other targets
zcashtestnet {
dimension 'network'
applicationId 'cash.z.android.wallet.testnet'
applicationId 'cash.z.android.zcon1.testnet'
matchingFallbacks = ['debug', 'zcashtestnet']
}
zcashmainnet {
dimension 'network'
applicationId 'cash.z.android.wallet.mainnet'
applicationId 'cash.z.android.zcon1.mainnet'
matchingFallbacks = ['release', 'zcashmainnet']
}
}

View File

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