Skip to content

Commit

Permalink
Increase the FFI lib version to "v1.0.0-rc.8", make the NextNet netwo…
Browse files Browse the repository at this point in the history
…rk default
  • Loading branch information
igordanilcenko committed May 7, 2024
1 parent 2c08348 commit 3a8b08d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import com.tari.android.wallet.util.DebugConfig

class NetworkRepositoryImpl(sharedPrefs: SharedPreferences) : NetworkRepository {

override val defaultNetwork = if (DebugConfig.mockNetwork) NETWORK_NEXTNET else NETWORK_STAGENET
override val defaultNetwork = if (DebugConfig.mockNetwork) NETWORK_NEXTNET else NETWORK_NEXTNET

override var supportedNetworks: List<TariNetwork> = if (DebugConfig.mockNetwork) listOf(NETWORK_NEXTNET) else listOf(NETWORK_STAGENET)
override var supportedNetworks: List<TariNetwork> = if (DebugConfig.mockNetwork) listOf(NETWORK_NEXTNET) else listOf(NETWORK_NEXTNET)

override var currentNetwork by SharedPrefGsonDelegate(
prefs = sharedPrefs,
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ buildscript {

// JNI libs
ext.libwalletHostURL = "https://github.com/tari-project/tari/releases/download/"
ext.libwalletVersion = "v1.0.0-alpha.2"
ext.libwalletMinValidVersion = "v1.0.0-alpha.2"
ext.libwalletVersion = "v1.0.0-rc.8"
ext.libwalletMinValidVersion = "v1.0.0-rc.8"
ext.libwalletx64A = "libminotari_wallet_ffi.android_x86_64.a"
ext.libwalletArmA = "libminotari_wallet_ffi.android_aarch64.a"
ext.libwalletHeader = "libminotari_wallet_ffi.h"
Expand Down

0 comments on commit 3a8b08d

Please sign in to comment.