IAmBlackHacker / AndroidReverseEngineering

all about android reverse engineering

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AndroidReverseEngineering

all about android reverse engineering

Getting APK from mobile

>> adb shell pm list packages
>> abd pull /data/app/apkfile.apk

Install/Uninstall

>> adb install apkfile.apk
>> adb uninstall apkfile.apk

Apktools decoding/build

apktool d apkfile.apk -o apkfolder
apktool b apkfolder

Generating keystore file

keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000

Sign the apk file

jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore app-debug.apk alias_name

Tools

Links

About

all about android reverse engineering