├── .gitignore ├── LICENSE ├── README.md ├── app ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── summerofbitcoin │ │ └── wallet │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── bip39-english.txt │ ├── java │ │ └── org │ │ │ └── summerofbitcoin │ │ │ └── wallet │ │ │ ├── DispatchActivity.kt │ │ │ ├── RecoverWalletFragment.kt │ │ │ ├── SobiWalletApplication.kt │ │ │ ├── WalletChoiceActivity.kt │ │ │ ├── WalletChoiceFragment.kt │ │ │ ├── data │ │ │ ├── Repository.kt │ │ │ └── Wallet.kt │ │ │ ├── utilities │ │ │ ├── SharedPrefManager.kt │ │ │ ├── Snackbars.kt │ │ │ └── Timestamps.kt │ │ │ └── wallet │ │ │ ├── AboutFragment.kt │ │ │ ├── ReceiveFragment.kt │ │ │ ├── RecoveryPhraseFragment.kt │ │ │ ├── SendFragment.kt │ │ │ ├── TransactionsFragment.kt │ │ │ ├── WalletActivity.kt │ │ │ ├── WalletFragment.kt │ │ │ └── WalletViewModel.kt │ └── res │ │ ├── anim │ │ ├── fade_in.xml │ │ ├── fade_out.xml │ │ ├── slide_in_bottom.xml │ │ ├── slide_in_left.xml │ │ ├── slide_in_right.xml │ │ ├── slide_out_bottom.xml │ │ ├── slide_out_left.xml │ │ └── slide_out_right.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── background_dialog.xml │ │ ├── background_snackbar_error.xml │ │ ├── background_snackbar_success.xml │ │ ├── faucet_address.png │ │ ├── ic_bitcoin_logo.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_testnet_logo.xml │ │ ├── launch_screen.xml │ │ └── summer.png │ │ ├── font │ │ ├── fira_mono.ttf │ │ └── fira_mono_medium.ttf │ │ ├── layout │ │ ├── activity_wallet.xml │ │ ├── activity_wallet_choice.xml │ │ ├── fragment_about.xml │ │ ├── fragment_receive.xml │ │ ├── fragment_recover.xml │ │ ├── fragment_recovery_phrase.xml │ │ ├── fragment_send.xml │ │ ├── fragment_transactions.xml │ │ ├── fragment_wallet.xml │ │ └── fragment_wallet_choice.xml │ │ ├── menu │ │ └── overflow_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── navigation │ │ ├── nav_wallet.xml │ │ └── nav_wallet_choice.xml │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── org │ └── summerofbitcoin │ └── wallet │ └── ExampleUnitTest.kt ├── docs ├── _config.yaml ├── images │ ├── header │ │ ├── android.svg │ │ ├── bitcoindevkit.svg │ │ ├── plus.png │ │ └── summer.png │ └── screenshots │ │ ├── navigation.png │ │ ├── nord-theme.png │ │ ├── recover.png │ │ ├── recovery-phrase.png │ │ ├── task-1.png │ │ ├── task-3.gif │ │ ├── task-6.gif │ │ ├── task-7.gif │ │ ├── transaction-history.png │ │ └── ui-screenshots.png ├── styles.css └── tutorial.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/org/summerofbitcoin/wallet/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/androidTest/java/org/summerofbitcoin/wallet/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/bip39-english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/assets/bip39-english.txt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/DispatchActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/DispatchActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/RecoverWalletFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/RecoverWalletFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/SobiWalletApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/SobiWalletApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/WalletChoiceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/WalletChoiceActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/WalletChoiceFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/WalletChoiceFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/data/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/data/Repository.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/data/Wallet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/data/Wallet.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/utilities/SharedPrefManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/utilities/SharedPrefManager.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/utilities/Snackbars.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/utilities/Snackbars.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/utilities/Timestamps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/utilities/Timestamps.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/AboutFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/AboutFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/ReceiveFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/ReceiveFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/RecoveryPhraseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/RecoveryPhraseFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/SendFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/SendFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/TransactionsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/TransactionsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/WalletActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/WalletActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/WalletFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/WalletFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/org/summerofbitcoin/wallet/wallet/WalletViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/java/org/summerofbitcoin/wallet/wallet/WalletViewModel.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/slide_in_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/slide_in_left.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/slide_out_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/slide_out_left.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/background_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_snackbar_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/background_snackbar_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_snackbar_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/background_snackbar_success.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/faucet_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/faucet_address.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bitcoin_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/ic_bitcoin_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_testnet_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/ic_testnet_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/launch_screen.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/drawable/summer.png -------------------------------------------------------------------------------- /app/src/main/res/font/fira_mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/font/fira_mono.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/fira_mono_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/font/fira_mono_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_wallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/activity_wallet.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_wallet_choice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/activity_wallet_choice.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_receive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_receive.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_recover.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recovery_phrase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_recovery_phrase.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_send.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_transactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_transactions.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_wallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_wallet.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_wallet_choice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/layout/fragment_wallet_choice.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/overflow_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/menu/overflow_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_wallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/navigation/nav_wallet.xml -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_wallet_choice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/navigation/nav_wallet_choice.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/org/summerofbitcoin/wallet/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/app/src/test/java/org/summerofbitcoin/wallet/ExampleUnitTest.kt -------------------------------------------------------------------------------- /docs/_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/_config.yaml -------------------------------------------------------------------------------- /docs/images/header/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/header/android.svg -------------------------------------------------------------------------------- /docs/images/header/bitcoindevkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/header/bitcoindevkit.svg -------------------------------------------------------------------------------- /docs/images/header/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/header/plus.png -------------------------------------------------------------------------------- /docs/images/header/summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/header/summer.png -------------------------------------------------------------------------------- /docs/images/screenshots/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/navigation.png -------------------------------------------------------------------------------- /docs/images/screenshots/nord-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/nord-theme.png -------------------------------------------------------------------------------- /docs/images/screenshots/recover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/recover.png -------------------------------------------------------------------------------- /docs/images/screenshots/recovery-phrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/recovery-phrase.png -------------------------------------------------------------------------------- /docs/images/screenshots/task-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/task-1.png -------------------------------------------------------------------------------- /docs/images/screenshots/task-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/task-3.gif -------------------------------------------------------------------------------- /docs/images/screenshots/task-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/task-6.gif -------------------------------------------------------------------------------- /docs/images/screenshots/task-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/task-7.gif -------------------------------------------------------------------------------- /docs/images/screenshots/transaction-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/transaction-history.png -------------------------------------------------------------------------------- /docs/images/screenshots/ui-screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/images/screenshots/ui-screenshots.png -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/styles.css -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbiscuit/summerofbitcoin-wallet/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "Summer of Bitcoin Wallet" 2 | include ':app' 3 | --------------------------------------------------------------------------------