Skip to content

Instantly share code, notes, and snippets.

View ctoabidmaqbool's full-sized avatar

Abid Maqbool ctoabidmaqbool

View GitHub Profile
1. Download latest apktool version.
2. Download the batch file and aapt.exe.
3. Create a folder anywhere in the PC and put all the apktool.jar, aapt.exe and the batch script in that folder.
4. Open command prompt.
5. Navigate to the folder where you placed apktool.jar, batch script and the aapt.exe.
6. Now, you need to install the file using the " IF " command.
7. Type the following command.
apktool if name-of-the-app.apk
@0rbianta
0rbianta / jobject_examples.h
Last active December 21, 2024 13:36
JNI Jobject examples
using namespace std;
//----------------------Convert a Java data------------------------\\
jstring create_jstring(JNIEnv *env, const char *data) {
return env->NewStringUTF(data);
}
jint create_jint(JNIEnv *env, int data){