Skip to content

Instantly share code, notes, and snippets.

"C:\Windows\System32\cmd.exe" /k apktool d -f -s "%1"
@pierx
pierx / batch_decompile_apk
Last active March 9, 2018 04:22
Batch Decompile Apk (Windows)
for /r %i in (*.apk) do apktool d -s "%i"
@pierx
pierx / gist:2587348d4bc440bddb86a83605e50f6a
Created April 27, 2017 12:39 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream