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 ea48f95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 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 258
versionName "3.79"

android.buildFeatures.buildConfig true

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 ea48f95

Please sign in to comment.