Go to file
Honza Rychnovský b468b4c725
[#1067] Build universal release APK on CI
Closes #1067
2023-11-28 13:51:23 +01:00
.github [#1067] Build universal release APK on CI 2023-11-28 13:51:23 +01:00
.idea [#948] Updated Settings screen UI 2023-09-28 14:17:21 +02:00
app [#1051] Fix Export Data FileProvider 2023-11-23 11:07:09 +01:00
build-conventions-secant [#1067] Build universal release APK on CI 2023-11-28 13:51:23 +01:00
build-info-lib [#992][#1025] Custom Google Play publishing 2023-11-13 11:50:57 +01:00
buildSrc [#992][#1025] Custom Google Play publishing 2023-11-13 11:50:57 +01:00
configuration-api-lib [#947] About screen UI/logic/tests 2023-10-17 15:56:04 +02:00
configuration-impl-android-lib [#873] Detekt enhance 2023-06-19 08:59:00 +02:00
crash-android-lib [#673] process .ec files from emulator.wtf 2023-02-13 08:10:32 -05:00
crash-lib [#969] Kover 0.7.3 2023-09-22 14:30:29 +02:00
docs [#942] New Wallet Recovery Phrase Screen 2023-11-23 10:00:13 +01:00
gradle/wrapper [#955] Gradle 8.3 2023-08-31 10:10:52 +02:00
preference-api-lib [#942] New Wallet Recovery Phrase Screen 2023-11-23 10:00:13 +01:00
preference-impl-android-lib [#873] Detekt enhance 2023-06-19 08:59:00 +02:00
sdk-ext-lib [#942] New Wallet Recovery Phrase Screen 2023-11-23 10:00:13 +01:00
spackle-android-lib [#905] Add copy-to-clipboard for addresses 2023-07-17 12:33:14 +02:00
spackle-lib [#969] Kover 0.7.3 2023-09-22 14:30:29 +02:00
test-lib [#764] Multiplatform remote config API 2023-02-21 12:50:31 -05:00
tools [#888] Remove Default Detekt Values 2023-06-20 11:27:05 +02:00
ui-benchmark-test [#592] Instrumentation coverage 2023-01-17 14:54:40 -05:00
ui-design-lib [#1064] Restore Seed-Birthday Screen 2023-11-28 13:05:31 +01:00
ui-integration-test [#985] Fix failing UI tests on texts' case 2023-10-03 14:23:43 +02:00
ui-lib [#1064] Restore Seed-Birthday Screen 2023-11-28 13:05:31 +01:00
ui-screenshot-test [#1064] Restore Seed-Birthday Screen 2023-11-28 13:05:31 +01:00
.gitignore [#998] Transaction History Compose Preview 2023-11-08 10:47:49 +01:00
CHANGELOG.md [#1064] Restore Seed-Birthday Screen 2023-11-28 13:05:31 +01:00
LICENSE [#951] Add Archivo font 2023-08-30 10:36:31 +02:00
README.md Update the README for the Zashi Android repository. (#1041) 2023-11-23 12:01:14 +01:00
build.gradle.kts [#1031] Export of private app data 2023-11-13 14:53:16 +01:00
buildscript-gradle.lockfile [#992][#1025] Custom Google Play publishing 2023-11-13 11:50:57 +01:00
gradle.properties [#942] New Wallet Recovery Phrase Screen 2023-11-23 10:00:13 +01:00
gradlew [#955] Gradle 8.3 2023-08-31 10:10:52 +02:00
gradlew.bat [#678] Gradle 7.6 2022-12-15 16:16:50 +01:00
settings.gradle.kts [#992][#1025] Custom Google Play publishing 2023-11-13 11:50:57 +01:00

README.md

Zashi Android Wallet

This is the official home of the Zashi Zcash wallet for Android, a no-frills Zcash mobile wallet leveraging the Zcash Android SDK.

Beta Testing

The Zashi Android wallet is currently in closed beta testing, and will be publicly available from the Google Play Store when testing is complete.

If you'd like to be added to the waitlist to become a Zashi beta tester, please sign up here.

Reporting an issue

If you'd like to report a technical issue or feature request for the Android Wallet, please file a GitHub issue here.

For feature requests and issues related to the Zashi user interface that are not Android-specific, please file a GitHub issue here.

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.

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.

Getting Started

If you'd like to compile this application from source, please see our Setup Documentation to get started.

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.)

  1. Change the app name under gradle.properties
    1. See ZCASH_RELEASE_APP_NAME
  2. Change the package name under app/build.gradle.kts
    1. See ZCASH_RELEASE_PACKAGE_NAME
  3. Change the support email address under gradle.properties
    1. See ZCASH_SUPPORT_EMAIL_ADDRESS
  4. Remove any copyrighted ZCash or Electric Coin Company icons, logos, or assets
    1. ui-lib/src/main/res/common/ - All of the the ic_launcher assets
  5. Optional
    1. Configure secrets and variables for Continuous Integration
    2. Configure Firebase API keys and place them under app/src/debug/google-services.json and app/src/release/google-services.json

Known Issues

  1. 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.
  2. 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.
  3. Test coverage for Compose code will be low, due to known limitations in the interaction between Compose and Jacoco.
  4. Adding the espresso-contrib dependency will cause builds to fail, due to conflicting classes. This is a known issue with the Zcash Android SDK.
  5. Android Studio will warn about the Gradle checksum. This is a known issue and can be safely ignored.
  6. #96 - Release builds print some R8 warnings which can be safely ignored.
  7. 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.