Skip to content

Commit

Permalink
Upgrade to v3.79
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesSmartCell committed Mar 25, 2024
1 parent d887ad2 commit 3d728ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 22 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ android {
applicationId "io.stormbird.wallet"
minSdk 24
targetSdk 34
versionCode 257
versionName "3.78"
versionCode 259
versionName "3.79"

android.buildFeatures.buildConfig true

Expand Down
10 changes: 1 addition & 9 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>

<uses-feature
android:name="android.hardware.fingerprint"
Expand Down Expand Up @@ -125,8 +123,7 @@
<service
android:name=".service.WalletConnectV2Service"
android:enabled="true"
android:exported="false"
android:foregroundServiceType="connectedDevice">
android:exported="false">
</service>

<service
Expand Down Expand Up @@ -282,11 +279,6 @@
android:name=".ui.TokenScriptManagementActivity"
android:label="@string/tokenscript_management" />

<activity
android:name=".ui.WalletConnectActivity"
android:label="WalletConnect"
android:launchMode="singleTop" />

<activity
android:name=".ui.BackupFlowActivity"
android:label="WalletConnect" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ protected void onCreate(@Nullable Bundle savedInstanceState)
initIntents();

initViewModel();

usingNativeTokenScript = !viewModel.getUseTSViewer();
}

private void initIntents()
Expand Down Expand Up @@ -308,12 +310,6 @@ private void setup()
setTitle(token.tokenInfo.name);
updateDefaultTokenData();

if (!viewModel.getUseTSViewer())
{
TokenDefinition td = viewModel.getAssetDefinitionService().getAssetDefinition(this.token);
this.usingNativeTokenScript = (td != null && td.nameSpace != null);
}

if (asset != null && asset.isAttestation())
{
setupAttestation(viewModel.getAssetDefinitionService().getAssetDefinition(token));
Expand Down Expand Up @@ -356,11 +352,6 @@ private void newScriptFound(TokenDefinition td)

setTitle(token.getTokenName(viewModel.getAssetDefinitionService(), 1));

if (!viewModel.getUseTSViewer())
{
this.usingNativeTokenScript = td.nameSpace != null;
}

//now re-load the verbs if already called. If wallet is null this won't complete
setupFunctionBar(viewModel.getWallet());

Expand Down

0 comments on commit 3d728ed

Please sign in to comment.