Skip to content

Commit

Permalink
[feat] Refactor wallet_app/android (#95)
Browse files Browse the repository at this point in the history
Co-authored-by: Gift-Naomi <emmanuelgiftnaomi.com>
  • Loading branch information
Mystic-Nayy authored Oct 8, 2024
1 parent 8a304eb commit 97561d1
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 97561d1

Please sign in to comment.