Updated on 2026-08-14

This commit is contained in:
Tangem 2018-07-24 13:38:42 +03:00
parent e862424234
commit 44abb99a9f
11 changed files with 18 additions and 103 deletions

View file

@ -11,7 +11,7 @@ import com.tangem.wallet.R;
public class NoExtendedLengthSupportDialog extends DialogFragment {
public static final String TAG = NoExtendedLengthSupportDialog.class.getSimpleName();
public static boolean allreadyShowed = false;
public static boolean allReadyShowed = false;
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
@ -19,7 +19,7 @@ public class NoExtendedLengthSupportDialog extends DialogFragment {
.setIcon(R.drawable.tangem_logo_small_new)
.setTitle(R.string.warning)
.setMessage(R.string.the_nfc_adapter_length_apdu)
.setPositiveButton(R.string.got_it, (dialog, whichButton) -> NoExtendedLengthSupportDialog.allreadyShowed = true)
.setPositiveButton(R.string.got_it, (dialog, whichButton) -> NoExtendedLengthSupportDialog.allReadyShowed = true)
.create();
}