master
branch is always production-ready, deployable, 100% green test suite- New development is done on feature branches, with frequent rebasing onto master
- Clean commit history by preferring to rebase instead of merge (
git pull
is configured to automatically rebase)
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
#!/usr/bin/env bash | |
# | |
# Install required dependencies with android command | |
# | |
for DEP in android-25 \ | |
build-tools-25.0.2 \ | |
tool \ | |
extra-android-m2repository \ | |
extra-android-support \ |
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
# create keystore file | |
keytool -genkey -v -keystore [my-release-key].ketstore -keyalg RSA -validity 1000 -alias [some_alias] | |
# sign package | |
jarsigner -keystore my-release-key.ketstore [some-release-unsigned.apk] some_alias | |
# verify signed package | |
jarsigner -verify [some-release-unsigned.apk] |
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
#!/usr/bin/env bash | |
# | |
# Install JUST the required dependencies for the project. | |
# May be used for ci or other team members. | |
# | |
for I in android-25 \ | |
build-tools-25.0.2 \ | |
tool \ | |
extra-android-m2repository \ |