https://github.com/bitcoin-com/gamesandroidapp
https://github.com/bitcoin-com/gamesandroidapp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bitcoin-com/gamesandroidapp
- Owner: Bitcoin-com
- License: gpl-3.0
- Created: 2017-03-08T06:54:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-14T02:02:45.000Z (almost 7 years ago)
- Last Synced: 2025-03-21T09:48:09.728Z (about 1 year ago)
- Language: Java
- Size: 3.09 MB
- Stars: 0
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Bitcoin Games Android
[](https://app.bitrise.io/app/a6dbce9119abac7f)
### Download Android SDK and get latest build tools
1. wget https://dl.google.com/android/repository/tools_r25.2.3-linux.zip
2. unzip tools_r25.2.3-linux.zip -d android
3. android/tools/android update sdk -u -a -t 3
### Create keystore
keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-alias
### Build
./gradlew assembleRelease
### Align, sign and verify apk
android/build-tools/25.0.2/zipalign -v -p 4 my-app-unsigned.apk my-app-unsigned-aligned.apk
android/build-tools/25.0.2/apksigner sign --ks my-release-key.jks --out my-app-release.apk my-app-unsigned-aligned.apk
android/build-tools/25.0.2/apksigner verify -v my-app-release.apk
# Links
1. https://developer.android.com/studio/index.html#downloads
2. https://developer.android.com/studio/publish/app-signing.html#signing-manually