Updated on 2026-08-14

This commit is contained in:
Tangem 2019-08-16 14:57:44 +00:00
commit 7cf462453b
2 changed files with 6 additions and 2 deletions

View file

@ -36,8 +36,8 @@ android {
flavorDimensions ""
productFlavors {
tangemAccess {
versionCode 113
versionName "0.907.2." + generateVersionName()
versionCode 114
versionName "0.908.1." + generateVersionName()
applicationId "com.tangem.wallet"
signingConfig signingConfigs.debug
}

View file

@ -1,6 +1,7 @@
package com.tangem.wallet.xlm;
import android.net.Uri;
import android.os.StrictMode;
import android.text.InputFilter;
import android.util.Log;
@ -351,6 +352,9 @@ public class XlmEngine extends CoinEngine {
@Override
public SignTask.TransactionToSign constructTransaction(Amount amountValue, Amount feeValue, boolean IncFee, String targetAddress) throws Exception {
checkBlockchainDataExists();
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
if (IncFee) {
amountValue = new Amount(amountValue.subtract(feeValue), amountValue.getCurrency());