Skip to content

Instantly share code, notes, and snippets.

View xsveda's full-sized avatar

Pavel Sveda xsveda

View GitHub Profile
@xsveda
xsveda / apk-change-version-number.md
Created May 21, 2019 09:31 — forked from benvium/apk-change-version-number.md
How to change the version number on an existing APK without re-building

This requires the latest version of apktool.

apktool d $APK_PATH -o $OUTPUT_FOLDER

# Open the apktool.yml text file
# Alter the versionCode and versionName entries

# now rebuild!
apktool build $OUTPUT_FOLDER 
@xsveda
xsveda / simple-git-workflow.md
Created February 4, 2019 20:02 — forked from leesmith/simple-git-workflow.md
Simple Git Workflow For Continuous Delivery

Simple Git Workflow For Continuous Delivery

Workflow guidelines:

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

rebase workflow

Workflow