705386e031
* [#948] Updated Settings screen UI * [#948] Crash fix on settings screen * Center button UI components text So the text aligns with the center when the button is displayed on a very small device or, e.g., when the system accessibility text size increase feature is used. * Keep button spacing When rotated to landscape, the weighted spacing disappears. But we ideally want buttons to have all the same spacing around them in this scenario. * Kotlin code style * Move previous settings option to overflow - As the new design prescribes no debug/test options in the settings screen, we moved these useful actions into the only troubleshooting menu in the app bar. - Tests added * Add UI tests * Text in all caps in the components Rather than enforcing all caps in translations. --------- Co-authored-by: Honza <rychnovsky.honza@gmail.com> |
||
---|---|---|
.github | ||
.idea | ||
app | ||
build-conventions-secant | ||
build-info-lib | ||
buildSrc | ||
configuration-api-lib | ||
configuration-impl-android-lib | ||
crash-android-lib | ||
crash-lib | ||
docs | ||
gradle/wrapper | ||
preference-api-lib | ||
preference-impl-android-lib | ||
sdk-ext-lib | ||
spackle-android-lib | ||
spackle-lib | ||
test-lib | ||
tools | ||
ui-benchmark-test | ||
ui-design-lib | ||
ui-integration-test | ||
ui-lib | ||
ui-screenshot-test | ||
.gitignore | ||
LICENSE | ||
README.md | ||
build.gradle.kts | ||
buildscript-gradle.lockfile | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
settings.gradle.kts |
README.md
Secant Android Wallet
This is a sample implementation of a Zcash wallet for Android leveraging the Zcash Android SDK. The goal is to exercise the SDK and related Zcash libraries, as well as demonstrate how the SDK works.
While we aim to continue improving this sample, it is not an official product. We open sourced it as a resource to make wallet development easier for the Zcash ecosystem.
Getting Started
If you'd like to compile this application from source, please see our Setup Documentation to get started.
Reporting an issue
If you wish to report a security issue, please follow our Responsible Disclosure guidelines. See the Wallet App Threat Model for more information about the security and privacy limitations of the wallet.
If you'd like to report a technical issue or feature request for the Android Wallet, please file a GitHub issue.
General Zcash questions and/or support requests and are best directed to either:
Contributing
Contributions are very much welcomed! Please read our Contributing Guidelines to learn about our process.
Forking
If you plan to fork the project to create a new app of your own, please make the following changes. (If you're making a GitHub fork to contribute back to the project, these steps are not necessary.)
- Change the app name under gradle.properties
- See
ZCASH_RELEASE_APP_NAME
- See
- Change the package name under app/build.gradle.kts
- See
ZCASH_RELEASE_PACKAGE_NAME
- See
- Change the support email address under gradle.properties
- See
ZCASH_SUPPORT_EMAIL_ADDRESS
- See
- Remove any copyrighted ZCash or Electric Coin Company icons, logos, or assets
- ui-lib/src/main/res/common/ - All of the the ic_launcher assets
- Optional
- Configure secrets and variables for Continuous Integration
- Configure Firebase API keys and place them under
app/src/debug/google-services.json
andapp/src/release/google-services.json
Known Issues
- Intel-based machines may have trouble building in Android Studio. The workaround is to add the following line to
~/.gradle/gradle.properties
ZCASH_IS_DEPENDENCY_LOCKING_ENABLED=false
. See #420 for more information. - During builds, a warning will be printed that says "Unable to detect AGP versions for included builds. All projects in the build should use the same AGP version." This can be safely ignored. The version under build-conventions is the same as the version used elsewhere in the application.
- When the code coverage Gradle property
IS_ANDROID_INSTRUMENTATION_TEST_COVERAGE_ENABLED
is enabled, the debug app APK cannot be run. The coverage flag should therefore only be set when running automated tests. - Test coverage for Compose code will be low, due to known limitations in the interaction between Compose and Jacoco.
- Adding the
espresso-contrib
dependency will cause builds to fail, due to conflicting classes. This is a known issue with the Zcash Android SDK. - Android Studio will warn about the Gradle checksum. This is a known issue and can be safely ignored.
- #96 - Release builds print some R8 warnings which can be safely ignored.
- During app first launch, the following exception starting with
AndroidKeysetManager: keyset not found, will generate a new one
is printed twice. This exception is not an error, and the code is not being invoked twice.