Updated on 2026-08-14
This commit is contained in:
parent
99825905ab
commit
5226ce7667
6 changed files with 13 additions and 13 deletions
|
|
@ -23,7 +23,7 @@ android {
|
|||
debug {
|
||||
debuggable true
|
||||
minifyEnabled false
|
||||
// applicationIdSuffix ".debug"
|
||||
applicationIdSuffix ".debug"
|
||||
signingConfig signingConfigs.debug
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">Tangem Access DEV</string>
|
||||
<string name="app_name">DEV</string>
|
||||
|
||||
</resources>
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
<activity
|
||||
android:name="com.tangem.presentation.activity.LogoActivity"
|
||||
android:label="@string/title_activity_main"
|
||||
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/AppTheme.NoActionBar">
|
||||
<intent-filter>
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
</activity>
|
||||
<activity
|
||||
android:name="com.tangem.presentation.activity.MainActivity"
|
||||
android:label="@string/title_activity_main"
|
||||
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/AppTheme.NoActionBar">
|
||||
|
|
@ -66,7 +66,7 @@
|
|||
</activity>
|
||||
<activity
|
||||
android:name="com.tangem.presentation.activity.RequestPINActivity"
|
||||
android:label="@string/title_activity_main"
|
||||
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/AppTheme.NoActionBar"/>
|
||||
<activity
|
||||
|
|
@ -98,7 +98,7 @@
|
|||
android:theme="@style/AppTheme.NoActionBar"/>
|
||||
<activity
|
||||
android:name="com.tangem.presentation.activity.CreateNewWalletActivity"
|
||||
android:label="@string/title_activity_main"
|
||||
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/AppTheme.NoActionBar"/>
|
||||
<activity
|
||||
|
|
@ -133,6 +133,7 @@
|
|||
android:name="com.tangem.presentation.activity.SettingsFeatureActivity"
|
||||
android:label="@string/title_activity_settings_feature">
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
|
@ -327,7 +327,7 @@ public class TangemCard {
|
|||
// }
|
||||
// }
|
||||
} else {
|
||||
result.append("None");
|
||||
result.append("-- -- --");
|
||||
}
|
||||
} else {
|
||||
result.append("-- -- --");
|
||||
|
|
@ -405,7 +405,7 @@ public class TangemCard {
|
|||
result.append("\nawaiting confirmation...");
|
||||
}
|
||||
} else if (balanceUnconfirmed == 0) {
|
||||
result.append("None");
|
||||
result.append("-- -- --");
|
||||
} else if (balanceUnconfirmed != 0) {
|
||||
result.append("awaiting confirmation...");
|
||||
}
|
||||
|
|
@ -432,7 +432,7 @@ public class TangemCard {
|
|||
if (hasUnspentInfo() && hasHistoryInfo() && mHistoryTransactions.size() - mUnspentTransactions.size() > 0) {
|
||||
return String.valueOf(mHistoryTransactions.size() - mUnspentTransactions.size());
|
||||
} else if (hasUnspentInfo() && hasHistoryInfo()) {
|
||||
return "None";
|
||||
return "-- -- --";
|
||||
} else {
|
||||
return "-- -- --";
|
||||
}
|
||||
|
|
@ -476,7 +476,7 @@ public class TangemCard {
|
|||
if (balanceUnconfirmed != 0) {
|
||||
return "awaiting confirmation...";
|
||||
} else {
|
||||
return "None";
|
||||
return "-- -- --";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -505,13 +505,13 @@ public class TangemCard {
|
|||
}
|
||||
|
||||
if (maxUDT == 0) {
|
||||
return "None";
|
||||
return "-- -- --";
|
||||
} else {
|
||||
return Util.formatDateTime(new Date(maxUDT));
|
||||
}
|
||||
|
||||
} else {
|
||||
return "None";
|
||||
return "-- -- --";
|
||||
}
|
||||
} else {
|
||||
return "-- -- --";
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@
|
|||
<string name="enable_nfc">This app is useless when NFC is disabled. Reader mode depends on it. Hit OK to go to Settings, where you can enable NFC.</string>
|
||||
<string name="cmd_suffix">command</string>
|
||||
<string name="rsp_suffix">response</string>
|
||||
<string name="title_activity_main">Tangem Access</string>
|
||||
<string name="action_settings">Settings</string>
|
||||
<string name="title_activity_card_info">CardInfoActivity</string>
|
||||
<string name="section_format">Hello World from section: %1$d</string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue