Skip to content

Commit

Permalink
feat: implement create account and import existing account flow (#97)
Browse files Browse the repository at this point in the history
* feat: create wallet and generate key screens

* feat: import key flow

* fix: remove enable
  • Loading branch information
zintarh authored Oct 17, 2024
1 parent 2bf8c36 commit 93477d5
Show file tree
Hide file tree
Showing 9 changed files with 1,386 additions and 14 deletions.
11 changes: 0 additions & 11 deletions wallet_app/android/.idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions wallet_app/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,35 @@
<activity android:name=".AccountPasswordActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

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

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


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


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


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


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

</application>

</manifest>
Loading

0 comments on commit 93477d5

Please sign in to comment.