https://github.com/myetherwallet/mewconnect-android
MEWconnect Android application
https://github.com/myetherwallet/mewconnect-android
android ethereum kotlin-android mew mewconnect wallet
Last synced: 9 months ago
JSON representation
MEWconnect Android application
- Host: GitHub
- URL: https://github.com/myetherwallet/mewconnect-android
- Owner: MyEtherWallet
- License: mit
- Created: 2018-10-11T19:53:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-20T14:57:45.000Z (almost 6 years ago)
- Last Synced: 2025-06-19T05:04:29.497Z (about 1 year ago)
- Topics: android, ethereum, kotlin-android, mew, mewconnect, wallet
- Language: Kotlin
- Size: 4.5 MB
- Stars: 52
- Watchers: 15
- Forks: 27
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# MEWconnect-Android
Android Version of the MEWconnect Applicaiton
## Getting Started
This project is built using Android studio, you can also use docker to build the project
### Build with docker
Make sure you have docker installed
```
docker build -t android-build .
docker run --rm -v "$PWD":/home/gradle/ -w /home/gradle/ android-build gradle assemble
docker run --rm -v "$PWD":/home/gradle/ -w /home/gradle/ android-build zipalign -p 4 app/build/outputs/apk/release/app-release-unsigned.apk release/MEWconnect-Android-$RELEASE-unsigned.apk
docker run --rm -v "$PWD":/home/gradle/ -w /home/gradle/ android-build apksigner sign --out release/MEWconnect-Android-$RELEASE.apk --ks MEWconnect-keystore.jks --ks-key-alias mewconnect --ks-pass env:KEYSTORE_PASS --key-pass env:KEY_PASS release/MEWconnect-Android-$RELEASE-unsigned.apk
```