Skip to content

Commit

Permalink
Merge branch 'main' of github.com:keep-starknet-strange/starknet-phone
Browse files Browse the repository at this point in the history
  • Loading branch information
trbutler4 committed Oct 8, 2024
2 parents 083ec99 + 97561d1 commit 37e91be
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions wallet_app/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,29 @@
</intent-filter>
</activity>
<activity
android:name=".SendActivity"
android:name=".ui.activity.SendActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>
<activity
android:name=".ReceiverActivity"
android:name=".ui.activity.ReceiverActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>
<activity android:name=".AddTokenActivity"
<activity android:name=".ui.activity.AddTokenActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

<activity android:name=".ui.activity.AccountBalanceActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

<activity android:name=".AccountPasswordActivity"
<activity android:name=".ui.activity.AccountPasswordActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>
<activity android:name=".RecoveryPhraseActivity"
<activity android:name=".ui.activity.RecoveryPhraseActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

<activity android:name=".WalletActivity"
<activity android:name=".ui.activity.WalletActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>
</application>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.walletapp
package com.example.walletapp.ui.activity

import android.app.Activity
import android.content.Intent
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.walletapp
package com.example.walletapp.ui.activity

import android.os.Bundle
import androidx.activity.ComponentActivity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.walletapp
package com.example.walletapp.ui.activity

import StarknetClient
import android.app.Activity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.walletapp
package com.example.walletapp.ui.activity

import android.content.ClipData
import android.content.ClipboardManager
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.walletapp
package com.example.walletapp.ui.activity
import android.app.Activity
import android.content.Intent
import android.os.Bundle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.walletapp
package com.example.walletapp.ui.activity

import android.os.Bundle
import androidx.activity.ComponentActivity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.walletapp
package com.example.walletapp.ui.activity

import StarknetClient
import android.app.Activity
Expand Down

0 comments on commit 37e91be

Please sign in to comment.