MT2.13.8.apk
21.1 MB
Version: 2.13.8 ✅ (23080967)
- Added a new setting: double-check before installing APK with built-in installer
- Added 9.png editor with preview function
- Added new feature: view dex file properties
- Added support using function menu for apk files if minSDK apk higher than in device (provided that package name can be resolved)
- Added support to cancel by return key when extracting installation package
- Added support manually specifying file name encoding of ZIP archives
- Optimized performance of some operations of hex editor
- Fixed file renaming failure in Android/data under root authority
- Fixed problem that select all and filter menus would not automatically hide after multiple shortcut triggers
- Fixed problem with run mt in Samsung A137F with Android 13
- Fixed several issues with arsc translation mode
- Fixed some other known issues
- Added a new setting: double-check before installing APK with built-in installer
- Added 9.png editor with preview function
- Added new feature: view dex file properties
- Added support using function menu for apk files if minSDK apk higher than in device (provided that package name can be resolved)
- Added support to cancel by return key when extracting installation package
- Added support manually specifying file name encoding of ZIP archives
- Optimized performance of some operations of hex editor
- Fixed file renaming failure in Android/data under root authority
- Fixed problem that select all and filter menus would not automatically hide after multiple shortcut triggers
- Fixed problem with run mt in Samsung A137F with Android 13
- Fixed several issues with arsc translation mode
- Fixed some other known issues
👍6
Garena Free Fire_1.100.1_apkcombo.com.apk
66.9 MB
⭐️FreeFire apk⭐️
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
👍5
dump.cs
45.6 MB
⭐️FF Dump⭐️
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
❤3
types.cs
29.4 MB
⭐️ FreeFire Type Dump⭐️
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
👍3❤2
FF_1.1000_DEC.zip
41.3 MB
⭐️FreeFire Dec files⭐️
➜ VERSION latest : 1.1.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ VERSION latest : 1.1.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
👍2❤1🥰1
aee9b000-b56f7000-libil2cpp_fix.so.idb
1.7 GB
⭐️FreeFire IDB File⭐️
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ VERSION latest : 1.100.0✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
🔥7👍1
extern "C"
JNIEXPORT void JNICALL
Java_com_bcd_gcsd_OpenYt(JNIEnv *env, jobject thiz) {
const char* urlStr = "vnd.youtube://@haxxcker/videos";
jclass intentClass = env->FindClass("android/content/Intent");
jmethodID intentConstructor = env->GetMethodID(intentClass, "<init>", "(Ljava/lang/String;)V");
jobject intentObj = env->NewObject(intentClass, intentConstructor, env->NewStringUTF("android.intent.action.VIEW"));
jmethodID setDataMethod = env->GetMethodID(intentClass, "setData", "(Landroid/net/Uri;)Landroid/content/Intent;");
jclass uriClass = env->FindClass("android/net/Uri");
jmethodID parseMethod = env->GetStaticMethodID(uriClass, "parse", "(Ljava/lang/String;)Landroid/net/Uri;");
jobject uriObj = env->CallStaticObjectMethod(uriClass, parseMethod, env->NewStringUTF(urlStr));
env->CallObjectMethod(intentObj, setDataMethod, uriObj);
jclass intentChooserClass = env->FindClass("android/content/Intent");
jmethodID createChooserMethod = env->GetStaticMethodID(intentChooserClass, "createChooser", "(Landroid/content/Intent;Ljava/lang/CharSequence;)Landroid/content/Intent;");
jobject chooserIntentObj = env->CallStaticObjectMethod(intentChooserClass, createChooserMethod, intentObj, env->NewStringUTF("Abrir"));
jclass ak = env->GetObjectClass(thiz);
jmethodID startActivityMethod = env->GetMethodID(ak, "startActivity", "(Landroid/content/Intent;)V");
env->CallVoidMethod(thiz, startActivityMethod, chooserIntentObj);
}
Jni code to direclty open youtube in android👍11❤3
Projeto Original GodsTeam 1.59.rar
19.7 MB
⭐️FreeFire Project⭐️
➜ Version : 1.59.1✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ Version : 1.59.1✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
❤18👍12😁4
FreeFire Test .apk
29 MB
⭐️FreeFire Apk⭐️
➜ Version : idk✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ Version : idk✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
👍13🌭6🤩5❤3🥰1
MT_Manager_v2.14.0_23092056_.apk
21.1 MB
Version: 2.14.0 ✅ (23092056)
- Upgraded minSdkVersion to 21. Android 4.x system is no longer supported from this version onwards
- Upgraded targetSdkVersion to 30. Affected by this, the extension package of terminal emulator is no longer available. You can only create a system shell and call system's own commands.
- Text editor's floating menu supports customization (display style, menu sorting, menu hiding)
- Text editor added a range search and replacement function (first select a section of text and then click range search)
- Text editor syntax highlighting does not limit text length (uses local highlighting algorithm for large text to optimize memory usage)
- Text editor tabs aligned by width (alignment width = space width * tab size)
- Dex+ search function supports setting a list of paths excluded from search range
- Dex+ code navigation now displays current class information and supports finding call locations, finding subclasses, and copying class signatures
....etc
- Upgraded minSdkVersion to 21. Android 4.x system is no longer supported from this version onwards
- Upgraded targetSdkVersion to 30. Affected by this, the extension package of terminal emulator is no longer available. You can only create a system shell and call system's own commands.
- Text editor's floating menu supports customization (display style, menu sorting, menu hiding)
- Text editor added a range search and replacement function (first select a section of text and then click range search)
- Text editor syntax highlighting does not limit text length (uses local highlighting algorithm for large text to optimize memory usage)
- Text editor tabs aligned by width (alignment width = space width * tab size)
- Dex+ search function supports setting a list of paths excluded from search range
- Dex+ code navigation now displays current class information and supports finding call locations, finding subclasses, and copying class signatures
....etc
👍13🥰2❤1🤔1
⭐️FreeFire ADV DUMP⭐️
➜ Version : 66.34.1✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
➜ Link(Download)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ Version : 66.34.1✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
➜ Link(Download)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
❤5👍4
#include <jni.h>
extern "C" JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM* vm, void* reserved) {
JNIEnv* env;
if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
// Handle the error if JNI environment retrieval fails
return JNI_ERR;
}
// Load the native library using System.loadLibrary
jclass systemClass = env->FindClass("java/lang/System");
jmethodID loadLibraryMethod = env->GetStaticMethodID(systemClass, "loadLibrary", "(Ljava/lang/String;)V");
jstring libraryName = env->NewStringUTF("mylibrary");
env->CallStaticVoidMethod(systemClass, loadLibraryMethod, libraryName);
// Perform initialization tasks here
// ...
return JNI_VERSION_1_6; // Return the desired JNI version
}Load a lib file from Jni
👍14🤡8🤔3🥰1
SDK.txt
2.2 MB
⭐️Farlight84 SDK dump⭐️
➜ Version : 1.15.1x✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit and to buy dumper @springmusk
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ Version : 1.15.1x✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit and to buy dumper @springmusk
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
❤5
⭐️Farlight84 Updated Offsets⭐️
➜ Version : 1.15.1x✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
➜ Link : https://sudoapk.link/npvWRYEDwjTl6mA/file
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ Version : 1.15.1x✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
➜ Link : https://sudoapk.link/npvWRYEDwjTl6mA/file
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
👏2
MT2.14.1.apk
21.4 MB
Version: 2.14.1 ✅️ (23103067)
- Added new features in text editor floating menu "Share", "Customize" and "Switch Comments"
- Terminal emulator functionality has been revitalized with support for extension pack functionality, including bash and coreutils.
- Script executor support for setting whether scripts are executed in system environment or in extension package environment
- Network storage supports automatically recording browsing history
- Network storage supports adding directories or files to bookmarks
- Network storage supports quickly setting initial path through menu in upper right corner
- When opening MT text editor from a third-party application, you will be returned directly to third-party application after exiting
- Automatically ZipAlign optimize JAR files when they are modified
- Automatically identify apk.1 files as apk files
- Open with dialog box supports entering text for filtering
- View APK information dialog box and long press "Install" to quickly select an external installer
- Added new features in text editor floating menu "Share", "Customize" and "Switch Comments"
- Terminal emulator functionality has been revitalized with support for extension pack functionality, including bash and coreutils.
- Script executor support for setting whether scripts are executed in system environment or in extension package environment
- Network storage supports automatically recording browsing history
- Network storage supports adding directories or files to bookmarks
- Network storage supports quickly setting initial path through menu in upper right corner
- When opening MT text editor from a third-party application, you will be returned directly to third-party application after exiting
- Automatically ZipAlign optimize JAR files when they are modified
- Automatically identify apk.1 files as apk files
- Open with dialog box supports entering text for filtering
- View APK information dialog box and long press "Install" to quickly select an external installer
👍4❤1
dump (1).cs
33.8 MB
⭐️FreeFire DUMP⭐️
➜ Version : 1.102.1✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
➜ Version : 1.102.1✓
➜ 32 BIT ✓
➜ SRC : [ idc ]
➜ Credits( @Layout_musk)
⚠️𝗡𝗼𝘁𝗶𝗰𝗲: Share with credit
-----------------------------------
📲 @Layout_musk - (To request new layout of Vip )
👍11❤🔥4🔥4