en
Feedback
Assembler 📚

Assembler 📚

Open in Telegram

💠 Assembly Best Knowledge 💠 Reverse Protection Apk 💠 Advance Tools 🛠️ The best channel to learn lib Modding Assembly & Flutter App Modding

Show more
924
Subscribers
No data24 hours
+1107 days
+23430 days
Posts Archive
Dr. Driving Patch Tools - Hook Tool MT - Mt Manager Root Data Hook In 1 Click 🥲

Repost from apkinsight
Any App MySqlLite3 Dumping Tools Haha Most Interesting Wait for my tutorial i'm full Explain how to Work this tools Dev - @aantik_mods

Repost from apkinsight
https://youtu.be/9MIYSKwFdi4 Ai Learning How to Make Mini Ai Moddel 🥇 💖 Most Interesting Video 😃

Repost from apkinsight
Mini Killer Rat ( Ai ) ⚠️ Don't Download Any Modded App Any platform This system works in a way that once you close the app, it continues to run in the background. It monitors the app's activity and tracks how long it has been since the app was last closed. For example, if you used a particular app two hours ago, the RAT (Remote Access Trojan) can detect this time lapse and automatically wake up the hidden Java classes within the app after the same interval. These classes start functioning quietly in the background and begin collecting sensitive information. This data is then sent directly to the hacker. The system is hard to detect or control because it includes a mini AI model that helps it function autonomously. Some developers have named this RAT the "Silent Killer" because of its stealthy operation. There are no obvious signs, and it’s difficult to trace or stop once it's active 😢 I'm already found some.big big Channel modded app If you need to use a modded app, create the mod yourself.

Repost from apkinsight
Sb hooktool 2.0.0 ( RAT 🤣 Live Proof) sb hooktool describes a remote access trojan (RAT) that collects sensitive data from an Android device and sends it to a remote server, usually via Telegram. It collects device details (model, OS version, etc.), network information (IP address), battery statistics, installed apps, Gmail accounts, and contacts. This malicious tool works secretly in the background, stealing personal information for unauthorized use, such as identity theft or spreading malware. Users must be careful

Repost from apkinsight
To create a dialog using JNI in C++, you need to call Java-based UI classes and methods through JNI, as Android UI runs on Java or Kotlin threads. This code demonstrates how to use JNI in C++ to create and customize an Android AlertDialog by calling Java methods (like AlertDialog.Builder, setTitle(), setMessage(), etc.) to dynamically construct and display the dialog with custom properties such as title, message, and buttons. You can use the JNI_OnLoad function to load a native library using System.loadLibrary. When this is done, you'll be able to see the AlertDialog in your Android app. However, to make this work, you need to retrieve the Context from Java. For instance, you might use a variable like: private Context antik; You can then rerun the JNI call to display the dialog. It's important to note that dialogs require a Context to be shown, while a Toast can be displayed without one because you can retrieve the Application Context from ActivityThread. In short, while AlertDialog needs a Context to show, Toast can work without it. Example My C++ Code
jclass alertDialogClass = env->FindClass("android/app/AlertDialog$Builder"); jmethodID constructor = env->GetMethodID(alertDialogClass, "<init>", "(Landroid/content/Context;)V"); jobject alertDialogBuilder = env->NewObject(alertDialogClass, constructor, instance); jmethodID setTitleMethod = env->GetMethodID(alertDialogClass, "setTitle", "(Ljava/lang/CharSequence;)Landroid/app/AlertDialog$Builder;"); jstring title = env->NewStringUTF("Antik Test Project"); env->CallObjectMethod(alertDialogBuilder, setTitleMethod, title); jmethodID setMessageMethod = env->GetMethodID(alertDialogClass, "setMessage", "(Ljava/lang/CharSequence;)Landroid/app/AlertDialog$Builder;"); jstring message = env->NewStringUTF("JNI Dialog"); env->CallObjectMethod(alertDialogBuilder, setMessageMethod, message); jmethodID setPositiveButtonMethod = env->GetMethodID(alertDialogClass, "setPositiveButton", "(Ljava/lang/CharSequence;Landroid/content/DialogInterface$OnClickListener;)Landroid/app/AlertDialog$Builder;"); jstring positiveButtonText = env->NewStringUTF("JOIN TG"); env->CallObjectMethod(alertDialogBuilder, setPositiveButtonMethod, positiveButtonText, nullptr); jclass alertDialogClassFinal = env->FindClass("android/app/AlertDialog"); jmethodID createMethod = env->GetMethodID(alertDialogClass, "create", "()Landroid/app/AlertDialog;"); jobject alertDialog = env->CallObjectMethod(alertDialogBuilder, createMethod); jmethodID showMethod = env->GetMethodID(alertDialogClassFinal, "show", "()V"); env->CallVoidMethod(alertDialog, showMethod); env->DeleteLocalRef(title); env->DeleteLocalRef(message); env->DeleteLocalRef(positiveButtonText); env->DeleteLocalRef(alertDialogClass); env->DeleteLocalRef(alertDialogBuilder); env->DeleteLocalRef(alertDialogClassFinal); env->DeleteLocalRef(alertDialog);
POST BY - @aantik_mods C++ Base Dialog Make I'm Just Learning Dex2c logic 😐 calling Java methods with classes constructor Jni Native java Interfere

private void abc() {
    Window antik = getWindow();
    antik.getDecorView().setSystemUiVisibility(
        View.SYSTEM_UI_FLAG_LAYOUT_STABLE |
        View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN |
        View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
    );
    antik.setStatusBarColor(Color.TRANSPARENT);
    antik.setNavigationBarColor(Color.TRANSPARENT);
    if (getSupportActionBar() != null) {
    getSupportActionBar().hide();
    }
}
abc();
import android.view.Window; import android.view.WindowManager; import android.view.View; import android.graphics.Color;

Repost from apkinsight
Android IDE NDK BUILD Android.mk
APP_STL := c++_static
Application.mk
APP_STL := c++_static APP_ABI := arm64-v8a APP_PLATFORM := android-19
build.gradle
plugins { id 'com.android.application' } android { namespace 'com.ax.hellojni' compileSdk 33 defaultConfig { applicationId "com.ax.hellojni" minSdk 19 targetSdk 33 versionCode 1 versionName "1.0" vectorDrawables { useSupportLibrary true } ndk { abiFilters 'arm64-v8a' } } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } buildFeatures { viewBinding true } externalNativeBuild { ndkBuild { path file('src/main/jni/Android.mk') } } ndkVersion "24.0.8215888" } dependencies { implementation("androidx.appcompat:appcompat:1.6.1") implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("com.google.android.material:material:1.9.0") }
NDK Install
wget https://raw.githubusercontent.com/arcans1998/ndk-r24-installer/main/ndk-install.sh && chmod +x ndk-install.sh && ./ndk-install.sh

Repost from apkinsight
HOOK工具 - https://unikbdboom.xyz/hook/ Steel 还有很多工作要做,现在只有 2 个好处可以发挥作用。 资产转储 NP 原版,使用此功能您可以轻松备份原始资产文件恢复转储器。 数据钩子 通过此功能,您可以轻松地将
HOOK工具 - https://unikbdboom.xyz/hook/ Steel 还有很多工作要做,现在只有 2 个好处可以发挥作用。 资产转储 NP 原版,使用此功能您可以轻松备份原始资产文件恢复转储器。 数据钩子 通过此功能,您可以轻松地将数据钩取到任何应用程序中,节省时间,并且可以用于各种用途。 Assets Dumper Beta 90% 更新崩溃字节我的工具我已修复 100%

Repost from apkinsight
Ohh Man D8 Tools Is Complete 🥴 Give me Your reaction Plz My Fast Project Done Now I can Work on Another Project Butter Dumper Zzz I Need 50 reactions from you for This and then I will upload it

Repost from apkinsight
FluPatch.zip Source Code ❗️ Developed By - @aantik_mods AndroidX Project or AndroidIDE Architecture Gatter Function 🤡

Repost from apkinsight

Repost from apkinsight
Tutorial how to use Flu Patcher Download Link - Click

Repost from apkinsight
How to add Your Any mod Apk Force Update Online Zip Link Dialog https://t.me/apkinsight/1240

Repost from apkinsight
ads verification dialog box need???
Anonymous voting

Repost from apkinsight
Download Link - https://t.me/apkinsight/1240 Easy to Use Upload Your json any text uploading website example https://pastebin
Download Link - https://t.me/apkinsight/1240 Easy to Use Upload Your json any text uploading website example https://pastebin.com/

Repost from apkinsight
Online Dialog.zip