Updated on 2026-08-14

This commit is contained in:
Tangem 2018-06-26 21:32:46 +03:00
parent cecb958d13
commit b5c0595723
8 changed files with 225 additions and 200 deletions

View file

@ -6,8 +6,10 @@ import android.nfc.NfcAdapter;
import android.nfc.Tag;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.Toast;
import com.tangem.presentation.fragment.LoadedWallet;
import com.tangem.wallet.BuildConfig;
import com.tangem.wallet.R;
import java.util.Objects;
@ -25,6 +27,8 @@ public class LoadedWalletActivity extends AppCompatActivity {
if (tag != null) {
LoadedWallet fragment = (LoadedWallet) (getSupportFragmentManager().findFragmentById(R.id.loaded_wallet_fragment));
fragment.onTagDiscovered(tag);
if (BuildConfig.DEBUG)
Toast.makeText(this, "onNFCReaderCallback 4", Toast.LENGTH_SHORT).show();
}
}
}