-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b7a9f3
commit 297614c
Showing
5 changed files
with
64 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Releases | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Setup Android build environment | ||
uses: android-actions/[email protected] | ||
- name: Build Android debug apks | ||
run: ./gradlew clean app:assembleDebug | ||
- name: Release mainnet artifact | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: app/build/outputs/apk/ergomainnet/debug/app-ergomainnet-debug.apk | ||
asset_name: ergowallet-mainnet-debug.apk | ||
asset_content_type: application/zip | ||
- name: Release testnet artifact | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: app/build/outputs/apk/ergotestnet/debug/app-ergotestnet-debug.apk | ||
asset_name: ergowallet-testnet-debug.apk | ||
asset_content_type: application/zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
# Ergo-Android | ||
# Ergo Wallet Android | ||
|
||
Example Android application which demonstrates how [Ergo | ||
Appkit](https://github.com/aslesarenko/ergo-appkit) can be used to develop Ergo applications. | ||
Ergo Wallet for Android, built on top of [Ergo Appkit](https://github.com/aslesarenko/ergo-appkit). | ||
|
||
This is work in progress, and use at your own risk. See releases section for binaries (built on GitHub) and release notes. | ||
|
||
Visit the [Ergo Discord](https://discord.gg/kj7s7nb) for more information. | ||
|
||
|
||
# TODO | ||
[ ] Biometric Auth Security https://stackoverflow.com/a/62445439/7487013 | ||
[ ] QR scan for sending | ||
[ ] Show error reasons for sending transaction (no unspent boxes) | ||
[ ] Prevent sending transaction when there are unconfirmed transactions (does not work) | ||
[ ] CoinGecko Fiat value request | ||
[ ] Edit/Delete/Export for Wallets | ||
[ ] Generate new wallets | ||
[ ] Prevent the same wallet being saved twice | ||
[ ] Amount input filter https://stackoverflow.com/a/13716371/7487013 | ||
[ ] Gradle verify dependencies | ||
[ ] API < 26: https://github.com/ergoplatform/ergo-appkit/issues/82 | ||
[ ] Change to appkit's secret storage https://github.com/ergoplatform/ergo-appkit/issues/84 | ||
- [ ] Biometric Auth Security https://stackoverflow.com/a/62445439/7487013 | ||
- [ ] QR scan for sending | ||
- [ ] Show error reasons for sending transaction (no unspent boxes) | ||
- [ ] Prevent sending transaction when there are unconfirmed transactions (does not work) | ||
- [ ] CoinGecko Fiat value request | ||
- [ ] Edit/Delete/Export for Wallets | ||
- [ ] Generate new wallets | ||
- [ ] Prevent the same wallet being saved twice | ||
- [ ] Amount input filter https://stackoverflow.com/a/13716371/7487013 | ||
- [ ] Gradle verify dependencies | ||
- [ ] API < 26: https://github.com/ergoplatform/ergo-appkit/issues/82 | ||
- [ ] Change to appkit's secret storage https://github.com/ergoplatform/ergo-appkit/issues/84 | ||
- [ ] Transactions list and details |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters