Updated on 2026-08-14
This commit is contained in:
parent
1950a03b81
commit
8057aef478
2 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue