Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge master #7666

Merged
merged 4 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
compileSdk compile_sdk_version
minSdkVersion min_sdk_version
targetSdkVersion compile_sdk_version
versionCode 114
versionCode 115
versionName "0.40.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
13 changes: 13 additions & 0 deletions app/src/main/java/io/horizontalsystems/bankwallet/core/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ import io.horizontalsystems.core.CoreApp
import io.horizontalsystems.core.ICoreApp
import io.horizontalsystems.core.security.EncryptionManager
import io.horizontalsystems.core.security.KeyStoreManager
import io.horizontalsystems.core.toHexString
import io.horizontalsystems.ethereumkit.core.EthereumKit
import io.horizontalsystems.hdwalletkit.Mnemonic
import io.reactivex.plugins.RxJavaPlugins
Expand Down Expand Up @@ -513,6 +514,18 @@ class App : CoreApp(), WorkConfiguration.Provider, ImageLoaderFactory {
localeAwareContext(this)
}

override val isSwapEnabled: Boolean by lazy {
val signatures = listOf(
"b797339fb356afce5160fe49274ee17a1c1816db", // appcenter
"5afb2517b06caac7f108ba9d96ad826f1c4ba30c", // hs
)

val applicationSignatures = App.instance.getApplicationSignatures()
applicationSignatures.none {
signatures.contains(it.toHexString())
}
}

override fun getApplicationSignatures() = try {
val signatureList = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
val signingInfo = packageManager.getPackageInfo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ object BalanceModule {
App.localStorage,
App.wcManager,
AddressHandlerFactory(App.appConfigProvider.udnApiKey),
App.priceManager
App.priceManager,
App.instance.isSwapEnabled
) as T
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class BalanceViewItemFactory {
failedIconVisible = state is AdapterState.NotSynced,
coinIconVisible = state !is AdapterState.NotSynced,
badge = wallet.badge,
swapVisible = wallet.token.swappable,
swapVisible = App.instance.isSwapEnabled && wallet.token.swappable,
swapEnabled = state is AdapterState.Synced,
errorMessage = (state as? AdapterState.NotSynced)?.error?.message,
isWatchAccount = watchAccount,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ class BalanceViewModel(
private val localStorage: ILocalStorage,
private val wCManager: WCManager,
private val addressHandlerFactory: AddressHandlerFactory,
private val priceManager: PriceManager
private val priceManager: PriceManager,
val isSwapEnabled: Boolean
) : ViewModelUiState<BalanceUiState>(), ITotalBalance by totalBalance {

private var balanceViewType = balanceViewTypeManager.balanceViewTypeFlow.value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,16 +306,18 @@ fun BalanceItems(
}
}
)
HSpacer(8.dp)
ButtonPrimaryCircle(
icon = R.drawable.ic_swap_24,
contentDescription = stringResource(R.string.Swap),
onClick = {
navController.slideFromRight(R.id.multiswap)

stat(page = StatPage.Balance, event = StatEvent.Open(StatPage.Swap))
}
)
if (viewModel.isSwapEnabled) {
HSpacer(8.dp)
ButtonPrimaryCircle(
icon = R.drawable.ic_swap_24,
contentDescription = stringResource(R.string.Swap),
onClick = {
navController.slideFromRight(R.id.multiswap)

stat(page = StatPage.Balance, event = StatEvent.Open(StatPage.Swap))
}
)
}
}
VSpacer(12.dp)
}
Expand Down
1 change: 1 addition & 0 deletions core/src/main/java/io/horizontalsystems/core/CoreApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ abstract class CoreApp : Application() {

abstract fun localizedContext(): Context
abstract fun getApplicationSignatures(): List<ByteArray>
abstract val isSwapEnabled: Boolean

fun localeAwareContext(base: Context): Context {
return LocaleHelper.onAttach(base)
Expand Down
Loading