Skip to content

Commit

Permalink
Update FFI to v1.7.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
igordanilcenko committed Oct 15, 2024
1 parent e83bfe5 commit 637661f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/src/main/cpp/jniWallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,7 @@ Java_com_tari_android_wallet_ffi_FFIWallet_jniCreate(
pSeedWords,
pNetwork,
pDnsPeer,
nullptr,
isDnsSecureOn,
txReceivedCallback,
txReplyReceivedCallback,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import com.tari.android.wallet.util.DebugConfig

class NetworkPrefRepositoryImpl(sharedPrefs: SharedPreferences) : NetworkPrefRepository {

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

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

private var _currentNetwork: Network by SharedPrefGsonDelegate(
prefs = sharedPrefs,
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {

// JNI libs
ext.libwalletHostURL = "https://github.com/tari-project/tari/releases/download/"
ext.libwalletVersion = "v1.7.0-rc.0"
ext.libwalletVersion = "v1.7.0-rc.1"
ext.libwalletMinValidVersion = "v1.4.1-rc.0"
ext.libwalletx64A = "libminotari_wallet_ffi.android_x86_64.a"
ext.libwalletArmA = "libminotari_wallet_ffi.android_aarch64.a"
Expand Down

0 comments on commit 637661f

Please sign in to comment.