diff --git a/WXGFDecoder/.gitignore b/WXGFDecoder/.gitignore
new file mode 100644
index 0000000..1d7e97f
--- /dev/null
+++ b/WXGFDecoder/.gitignore
@@ -0,0 +1,15 @@
+*.iml
+.gradle
+local.properties
+.idea/caches
+.idea/libraries
+.idea/modules.xml
+.idea/workspace.xml
+.idea/navEditor.xml
+.idea/assetWizardSettings.xml
+.DS_Store
+build
+captures
+.externalNativeBuild
+.cxx
+local.properties
diff --git a/WXGFDecoder/app/.gitignore b/WXGFDecoder/app/.gitignore
new file mode 100644
index 0000000..378eac2
--- /dev/null
+++ b/WXGFDecoder/app/.gitignore
@@ -0,0 +1 @@
+build
diff --git a/WXGFDecoder/app/build.gradle.kts b/WXGFDecoder/app/build.gradle.kts
new file mode 100644
index 0000000..bdf1bf8
--- /dev/null
+++ b/WXGFDecoder/app/build.gradle.kts
@@ -0,0 +1,55 @@
+import com.android.build.api.dsl.Packaging
+
+plugins {
+ alias(libs.plugins.android.application)
+}
+
+android {
+ namespace = "com.ppwwyyxx.wxgfdecoder"
+ compileSdk = 35
+
+ defaultConfig {
+ applicationId = "com.ppwwyyxx.wxgfdecoder"
+ minSdk = 24
+ targetSdk = 35
+ versionCode = 1
+ versionName = "1.0"
+
+ testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ isMinifyEnabled = false
+ proguardFiles(
+ getDefaultProguardFile("proguard-android-optimize.txt"),
+ "proguard-rules.pro"
+ )
+ signingConfig = signingConfigs.getByName("debug")
+ }
+ }
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_11
+ targetCompatibility = JavaVersion.VERSION_11
+ }
+ buildFeatures {
+ viewBinding = true
+ }
+ packagingOptions {
+ pickFirst( "jniLibs/arm64-v8a/libvoipCodec.so")
+ }
+}
+
+dependencies {
+ implementation("org.java-websocket:Java-WebSocket:1.5.4")
+ implementation(libs.appcompat)
+ implementation(libs.material)
+ implementation(libs.constraintlayout)
+ implementation(libs.lifecycle.livedata.ktx)
+ implementation(libs.lifecycle.viewmodel.ktx)
+ implementation(libs.navigation.fragment)
+ implementation(libs.navigation.ui)
+ testImplementation(libs.junit)
+ androidTestImplementation(libs.ext.junit)
+ androidTestImplementation(libs.espresso.core)
+}
diff --git a/WXGFDecoder/app/proguard-rules.pro b/WXGFDecoder/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/WXGFDecoder/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/AndroidManifest.xml b/WXGFDecoder/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..4e54afd
--- /dev/null
+++ b/WXGFDecoder/app/src/main/AndroidManifest.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/MainActivity.java b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/MainActivity.java
new file mode 100644
index 0000000..093141b
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/MainActivity.java
@@ -0,0 +1,227 @@
+package com.ppwwyyxx.wxgfdecoder;
+
+import android.content.Context;
+import android.os.Build;
+import android.os.PowerManager;
+import android.os.Bundle;
+import android.widget.Button;
+import android.widget.TextView;
+import android.widget.EditText;
+
+import com.tencent.mm.plugin.gif.MMWXGFJNI;
+
+import androidx.appcompat.app.AppCompatActivity;
+
+import com.ppwwyyxx.wxgfdecoder.databinding.ActivityMainBinding;
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.net.InetAddress;
+import java.net.InetSocketAddress;
+import java.io.InputStream;
+import java.nio.ByteBuffer;
+import java.util.Arrays;
+import java.net.NetworkInterface;
+import java.net.SocketException;
+import java.util.Collections;
+import java.util.List;
+
+
+import org.java_websocket.WebSocket;
+import org.java_websocket.handshake.ClientHandshake;
+import org.java_websocket.server.WebSocketServer;
+
+public class MainActivity extends AppCompatActivity {
+
+ private ActivityMainBinding binding;
+ private Button startButton;
+ private TextView hostnameTextView, portTextView, logTextView;
+ private EditText portEditText;
+ private WebSocketServer server;
+
+ static {
+ System.loadLibrary("wechatcommon");
+ }
+
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ binding = ActivityMainBinding.inflate(getLayoutInflater());
+ setContentView(binding.getRoot());
+
+ // Keep screen on
+ getWindow().addFlags(android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
+ // If the app is running on Android 8.0 or higher, request for ignoring battery optimizations
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
+ PowerManager powerManager = (PowerManager) getSystemService(Context.POWER_SERVICE);
+ if (!powerManager.isIgnoringBatteryOptimizations(getPackageName())) {
+ // TODO: request for ignoring battery optimizations
+ }
+ }
+
+ MMWXGFJNI.initialize(getApplicationInfo().nativeLibraryDir);
+
+ // Set up UI
+ startButton = findViewById(R.id.start_server_button);
+ hostnameTextView = findViewById(R.id.text_view_hostname);
+ portTextView = findViewById(R.id.text_view_port);
+ portEditText = findViewById(R.id.edit_text_port);
+ logTextView = findViewById(R.id.log_text_area);
+ logTextView.setText("");
+ startButton.setOnClickListener(v -> {
+ try {
+ startWebSocketServer();
+ } catch (InterruptedException e) {
+ throw new RuntimeException(e);
+ }
+ });
+
+ // Run a unit test:
+ testWxgfDecoder();
+ }
+
+ private void startWebSocketServer() throws InterruptedException {
+ if (server != null) {
+ server.stop();
+ server = null;
+ }
+
+ int port;
+ try {
+ port = Integer.parseInt(portEditText.getText().toString());
+ } catch (NumberFormatException e) {
+ port = 8080;
+ }
+ try {
+ server = new WebSocketServer(new InetSocketAddress(port)) {
+ @Override
+ public void onOpen(WebSocket conn, ClientHandshake handshake) {
+ printLog("new connection from " + conn.getRemoteSocketAddress().getAddress().getHostAddress());
+ }
+
+ @Override
+ public void onClose(WebSocket conn, int code, String reason, boolean remote) {
+ printLog("closed " + conn.getRemoteSocketAddress() + " with exit code " + code + " additional info: " + reason);
+ }
+ @Override
+ public void onMessage( WebSocket conn, ByteBuffer message ) {
+ byte[] msg = message.array();
+
+ printLog("received binary message from " + conn.getRemoteSocketAddress() + ": size=" + msg.length
+ + " -- " + Arrays.toString(Arrays.copyOfRange(msg, 0, 10)));
+
+ byte[] res = com.tencent.mm.plugin.gif.MMWXGFJNI.nativeWxam2PicBuf(msg);
+ if (res != null) {
+ printLog("After decoding: size=" + res.length + " -- " +
+ Arrays.toString(Arrays.copyOfRange(res, 0, 10)));
+ ByteBuffer response = ByteBuffer.wrap(res);
+ conn.send(response); // the response gif
+ } else {
+ printLog("Failed to decode.");
+ conn.send("FAILED".getBytes());
+ }
+ }
+
+ @Override
+ public void onMessage( WebSocket conn, String message) {
+ printLog("Unexpected! received text message from " + conn.getRemoteSocketAddress() + ": " + message);
+ }
+
+ @Override
+ public void onError(WebSocket conn, Exception ex) {
+ printLog("an error occurred on connection " + conn + ":" + ex);
+ }
+
+ @Override
+ public void onStart() {
+ try {
+ String hostName = getLocalIpAddress(true);
+ int port = server.getPort();
+ printLog("server started successfully at ws://" + hostName + ":" + port);
+
+ runOnUiThread(() -> { // update UI in UI thread
+ hostnameTextView.setText("Hostname: " + hostName);
+ portTextView.setText("Port: " + String.valueOf(port));
+ });
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+ };
+ server.start();
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+ private void printLog(String log) {
+ System.out.println(log);
+ runOnUiThread(() -> {
+ String currentLog = logTextView.getText().toString();
+ logTextView.setText(currentLog + "\n" + log);
+ });
+ }
+
+ public String getLocalIpAddress(boolean useIPv4) throws SocketException {
+ List interfaces = Collections.list(NetworkInterface.getNetworkInterfaces());
+ for (NetworkInterface intf : interfaces) {
+ List addrs = Collections.list(intf.getInetAddresses());
+ for (InetAddress addr : addrs) {
+ if (!addr.isLoopbackAddress()) {
+ String sAddr = addr.getHostAddress();
+ boolean isIPv4 = sAddr.indexOf(':')<0;
+ if (useIPv4) {
+ if (isIPv4)
+ return sAddr;
+ } else {
+ return sAddr;
+ }
+ }
+ } }
+ return "localhost";
+ }
+
+ // Methods below are for debugging the decoder:
+ private void testWxgfDecoder() {
+ byte[] wxgf = null;
+ try {
+ wxgf = readBinary(this);
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
+ System.out.println("Unit test: wxgf size=" + wxgf.length);
+ byte[] res = com.tencent.mm.plugin.gif.MMWXGFJNI.nativeWxam2PicBuf(wxgf);
+ System.out.println("Unit test: res size=" + res.length + " -- " + Arrays.toString(Arrays.copyOfRange(res, 0, 10)));
+
+ try {
+ writeFile(this, "test.jpg", res);
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
+ if (wxgf.length != 64367 || res.length != 705188) {
+ throw new RuntimeException("test failed");
+ }
+ }
+ public static byte[] readBinary(Context context) throws IOException {
+ InputStream inputStream = context.getResources().openRawResource(R.raw.test_wxgf); // R.raw.image refers to your image.jpg file
+ ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
+ byte[] buffer = new byte[1024];
+ int len;
+ while ((len = inputStream.read(buffer)) != -1) {
+ byteArrayOutputStream.write(buffer, 0, len);
+ }
+ inputStream.close(); // Close the input stream
+ return byteArrayOutputStream.toByteArray();
+ }
+
+ public static void writeFile(Context context, String filename, byte[] data) throws IOException {
+ File file = new File(context.getExternalFilesDir(null), filename); // Use null for the type argument to get the root external files directory
+ System.out.println("Writing file to: " + file.getAbsolutePath());
+ FileOutputStream outputStream = new FileOutputStream(file);
+ outputStream.write(data);
+ outputStream.close();
+ }
+}
diff --git a/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/dashboard/DashboardFragment.java b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/dashboard/DashboardFragment.java
new file mode 100644
index 0000000..5d63d38
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/dashboard/DashboardFragment.java
@@ -0,0 +1,37 @@
+package com.ppwwyyxx.wxgfdecoder.ui.dashboard;
+
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.TextView;
+
+import androidx.annotation.NonNull;
+import androidx.fragment.app.Fragment;
+import androidx.lifecycle.ViewModelProvider;
+
+import com.ppwwyyxx.wxgfdecoder.databinding.FragmentDashboardBinding;
+
+public class DashboardFragment extends Fragment {
+
+ private FragmentDashboardBinding binding;
+
+ public View onCreateView(@NonNull LayoutInflater inflater,
+ ViewGroup container, Bundle savedInstanceState) {
+ DashboardViewModel dashboardViewModel =
+ new ViewModelProvider(this).get(DashboardViewModel.class);
+
+ binding = FragmentDashboardBinding.inflate(inflater, container, false);
+ View root = binding.getRoot();
+
+ final TextView textView = binding.textDashboard;
+ dashboardViewModel.getText().observe(getViewLifecycleOwner(), textView::setText);
+ return root;
+ }
+
+ @Override
+ public void onDestroyView() {
+ super.onDestroyView();
+ binding = null;
+ }
+}
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/dashboard/DashboardViewModel.java b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/dashboard/DashboardViewModel.java
new file mode 100644
index 0000000..1b48ad8
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/dashboard/DashboardViewModel.java
@@ -0,0 +1,19 @@
+package com.ppwwyyxx.wxgfdecoder.ui.dashboard;
+
+import androidx.lifecycle.LiveData;
+import androidx.lifecycle.MutableLiveData;
+import androidx.lifecycle.ViewModel;
+
+public class DashboardViewModel extends ViewModel {
+
+ private final MutableLiveData mText;
+
+ public DashboardViewModel() {
+ mText = new MutableLiveData<>();
+ mText.setValue("This is dashboard fragment");
+ }
+
+ public LiveData getText() {
+ return mText;
+ }
+}
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/home/HomeFragment.java b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/home/HomeFragment.java
new file mode 100644
index 0000000..c6d4549
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/home/HomeFragment.java
@@ -0,0 +1,34 @@
+package com.ppwwyyxx.wxgfdecoder.ui.home;
+
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import androidx.annotation.NonNull;
+import androidx.fragment.app.Fragment;
+import androidx.lifecycle.ViewModelProvider;
+
+import com.ppwwyyxx.wxgfdecoder.databinding.FragmentHomeBinding;
+
+public class HomeFragment extends Fragment {
+
+ private FragmentHomeBinding binding;
+
+ public View onCreateView(@NonNull LayoutInflater inflater,
+ ViewGroup container, Bundle savedInstanceState) {
+ HomeViewModel homeViewModel =
+ new ViewModelProvider(this).get(HomeViewModel.class);
+
+ binding = FragmentHomeBinding.inflate(inflater, container, false);
+ View root = binding.getRoot();
+
+ return root;
+ }
+
+ @Override
+ public void onDestroyView() {
+ super.onDestroyView();
+ binding = null;
+ }
+}
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/home/HomeViewModel.java b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/home/HomeViewModel.java
new file mode 100644
index 0000000..7fb867e
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/home/HomeViewModel.java
@@ -0,0 +1,19 @@
+package com.ppwwyyxx.wxgfdecoder.ui.home;
+
+import androidx.lifecycle.LiveData;
+import androidx.lifecycle.MutableLiveData;
+import androidx.lifecycle.ViewModel;
+
+public class HomeViewModel extends ViewModel {
+
+ private final MutableLiveData mText;
+
+ public HomeViewModel() {
+ mText = new MutableLiveData<>();
+ mText.setValue("This is home fragment");
+ }
+
+ public LiveData getText() {
+ return mText;
+ }
+}
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/notifications/NotificationsFragment.java b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/notifications/NotificationsFragment.java
new file mode 100644
index 0000000..aba83ef
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/notifications/NotificationsFragment.java
@@ -0,0 +1,37 @@
+package com.ppwwyyxx.wxgfdecoder.ui.notifications;
+
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.TextView;
+
+import androidx.annotation.NonNull;
+import androidx.fragment.app.Fragment;
+import androidx.lifecycle.ViewModelProvider;
+
+import com.ppwwyyxx.wxgfdecoder.databinding.FragmentNotificationsBinding;
+
+public class NotificationsFragment extends Fragment {
+
+ private FragmentNotificationsBinding binding;
+
+ public View onCreateView(@NonNull LayoutInflater inflater,
+ ViewGroup container, Bundle savedInstanceState) {
+ NotificationsViewModel notificationsViewModel =
+ new ViewModelProvider(this).get(NotificationsViewModel.class);
+
+ binding = FragmentNotificationsBinding.inflate(inflater, container, false);
+ View root = binding.getRoot();
+
+ final TextView textView = binding.textNotifications;
+ notificationsViewModel.getText().observe(getViewLifecycleOwner(), textView::setText);
+ return root;
+ }
+
+ @Override
+ public void onDestroyView() {
+ super.onDestroyView();
+ binding = null;
+ }
+}
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/notifications/NotificationsViewModel.java b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/notifications/NotificationsViewModel.java
new file mode 100644
index 0000000..6f79d11
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/ppwwyyxx/wxgfdecoder/ui/notifications/NotificationsViewModel.java
@@ -0,0 +1,19 @@
+package com.ppwwyyxx.wxgfdecoder.ui.notifications;
+
+import androidx.lifecycle.LiveData;
+import androidx.lifecycle.MutableLiveData;
+import androidx.lifecycle.ViewModel;
+
+public class NotificationsViewModel extends ViewModel {
+
+ private final MutableLiveData mText;
+
+ public NotificationsViewModel() {
+ mText = new MutableLiveData<>();
+ mText.setValue("This is notifications fragment");
+ }
+
+ public LiveData getText() {
+ return mText;
+ }
+}
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/java/com/tencent/mm/plugin/fts/jni/FTSJNIUtils.java b/WXGFDecoder/app/src/main/java/com/tencent/mm/plugin/fts/jni/FTSJNIUtils.java
new file mode 100644
index 0000000..a3aee9d
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/tencent/mm/plugin/fts/jni/FTSJNIUtils.java
@@ -0,0 +1,14 @@
+package com.tencent.mm.plugin.fts.jni;
+
+public class FTSJNIUtils {
+ public static native int countTokens(String str);
+
+ public static native int icuInitialize(String str);
+
+ public static native String icuTokenizer(String str);
+
+ public static native void nativeInitFts(long j, byte[] bArr);
+
+ public static native int stringCompareUtfBinary(String str, String str2);
+
+}
diff --git a/WXGFDecoder/app/src/main/java/com/tencent/mm/plugin/gif/MMWXGFJNI.java b/WXGFDecoder/app/src/main/java/com/tencent/mm/plugin/gif/MMWXGFJNI.java
new file mode 100644
index 0000000..da82b6a
--- /dev/null
+++ b/WXGFDecoder/app/src/main/java/com/tencent/mm/plugin/gif/MMWXGFJNI.java
@@ -0,0 +1,101 @@
+//File:
+package com.tencent.mm.plugin.gif;
+
+import android.graphics.Bitmap;
+
+import java.io.File;
+/*
+ *import com.tencent.matrix.trace.core.AppMethodBeat;
+ *import com.tencent.mm.loader.p558j.C11743b;
+ *import com.tencent.mm.sdk.platformtools.C52656ad;
+ */
+
+/* renamed from: com.tencent.mm.plugin.gif.MMWXGFJNI */
+public class MMWXGFJNI {
+ public static final int PIC_TYPE_JPG = 0;
+ public static final int PIC_TYPE_PNG = 1;
+ private static final String TAG = "MicroMsg.JNI.MMWXGF";
+ static int mECode;
+ public static boolean mIsInit;
+
+
+ public static native int nativeAV2Gif(String str, String str2);
+
+ public static native int nativeAV2Gif(byte[] bArr, byte[] bArr2);
+
+ public static native int nativeAddGifEncodeRgbaFrame(long j, int i, int i2, byte[] bArr, long j2);
+
+ public static native int nativeAddWxAMEncodeRgbaFrame(long j, int i, int i2, byte[] bArr, long j2);
+
+ public static native int nativeDecodeBufferFrame(long j, byte[] bArr, int i, Bitmap bitmap, int[] iArr);
+
+ public static native int nativeDecodeBufferHeader(long j, byte[] bArr, int i);
+
+ public static native byte[] nativeFinishGifEncode(long j);
+
+ public static native byte[] nativeFinishWxAMEncode(long j);
+
+ public static native int nativeGetOption(long j, byte[] bArr, int i, int[] iArr);
+
+ public static native int nativeInit(String str);
+
+ public static native long nativeInitGifEncode(int i, int i2, long j);
+
+ public static native long nativeInitWxAMDecoder();
+
+ public static native long nativeInitWxAMEncoder(int i, int i2, long j, int i3);
+
+ public static native boolean nativeIsWXGF(byte[] bArr, int i);
+
+ public static native int nativePic2Wxam(String str, String str2, int i, int i2);
+
+ public static native int nativePic2WxamWithWH(String str, String str2, int i, int i2, int i3, int i4);
+
+ public static native int nativePic2WxamWithWH(String str, byte[] bArr, int i, int i2, int i3, int i4, int i5, int i6, int i7);
+
+ public static native int nativeRewindBuffer(long j);
+
+ public static native int nativeUninit(long j);
+
+ public static native int nativeWxam2Pic(String str, String str2);
+
+ public static native byte[] nativeWxam2PicBuf(byte[] bArr);
+
+ public static native byte[] nativeWxamToGif(byte[] bArr);
+
+ public static void initialize(String nativeDir) {
+ // init wxgf decoder
+ String soFilePath = nativeDir + "/libvoipCodec.so";
+ File soFile = new File(soFilePath);
+ if (!soFile.exists())
+ throw new RuntimeException("missing so file " + soFilePath);
+ int initSuccess = nativeInit(soFilePath); // return -1 if missing so
+ if (initSuccess < 0)
+ throw new RuntimeException("nativeInit failed " + initSuccess);
+ mIsInit = true;
+ }
+ /* // Original code below:
+ *static {
+ * AppMethodBeat.m13231i(104681);
+ * mIsInit = false;
+ * mECode = -1;
+ * C52656ad.m88211i(TAG, "static MMWXGFJNI");
+ * if (!mIsInit) {
+ * String str = C11743b.ahY() + "lib/libvoipCodec.so";
+ * int nativeInit = nativeInit(str);
+ * mECode = nativeInit;
+ * mIsInit = nativeInit >= 0;
+ * C52656ad.m88212i(TAG, "native init MMWXGF mECode:%d result:%b :%s", Integer.valueOf(mECode), Boolean.valueOf(mIsInit), str);
+ * AppMethodBeat.m13232o(104681);
+ * return;
+ * }
+ * C52656ad.m88205d(TAG, "MMWXGF has init.");
+ * AppMethodBeat.m13232o(104681);
+ *}
+ */
+
+ public static int getErrorCode() {
+ return mECode;
+ }
+}
+
diff --git a/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libc++_shared.so b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libc++_shared.so
new file mode 100644
index 0000000..878631c
Binary files /dev/null and b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libc++_shared.so differ
diff --git a/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libcommonimgdec.so b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libcommonimgdec.so
new file mode 100644
index 0000000..6ae4e75
Binary files /dev/null and b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libcommonimgdec.so differ
diff --git a/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libvoipCodec.so b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libvoipCodec.so
new file mode 100644
index 0000000..337032f
Binary files /dev/null and b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libvoipCodec.so differ
diff --git a/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libvoipComm.so b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libvoipComm.so
new file mode 100644
index 0000000..30dbcec
Binary files /dev/null and b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libvoipComm.so differ
diff --git a/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwcdb.so b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwcdb.so
new file mode 100644
index 0000000..70927ab
Binary files /dev/null and b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwcdb.so differ
diff --git a/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwechatcommon.so b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwechatcommon.so
new file mode 100644
index 0000000..9aa3013
Binary files /dev/null and b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwechatcommon.so differ
diff --git a/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwechatxlog.so b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwechatxlog.so
new file mode 100644
index 0000000..89dc809
Binary files /dev/null and b/WXGFDecoder/app/src/main/jniLibs/arm64-v8a/libwechatxlog.so differ
diff --git a/WXGFDecoder/app/src/main/res/drawable/ic_dashboard_black_24dp.xml b/WXGFDecoder/app/src/main/res/drawable/ic_dashboard_black_24dp.xml
new file mode 100644
index 0000000..46fc8de
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/drawable/ic_dashboard_black_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/WXGFDecoder/app/src/main/res/drawable/ic_home_black_24dp.xml b/WXGFDecoder/app/src/main/res/drawable/ic_home_black_24dp.xml
new file mode 100644
index 0000000..f8bb0b5
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/drawable/ic_home_black_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/WXGFDecoder/app/src/main/res/drawable/ic_launcher_background.xml b/WXGFDecoder/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..07d5da9
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WXGFDecoder/app/src/main/res/drawable/ic_launcher_foreground.xml b/WXGFDecoder/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/drawable/ic_notifications_black_24dp.xml b/WXGFDecoder/app/src/main/res/drawable/ic_notifications_black_24dp.xml
new file mode 100644
index 0000000..78b75c3
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/drawable/ic_notifications_black_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/WXGFDecoder/app/src/main/res/layout/activity_main.xml b/WXGFDecoder/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..07676af
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/layout/fragment_dashboard.xml b/WXGFDecoder/app/src/main/res/layout/fragment_dashboard.xml
new file mode 100644
index 0000000..166ab0e
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/layout/fragment_dashboard.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/layout/fragment_home.xml b/WXGFDecoder/app/src/main/res/layout/fragment_home.xml
new file mode 100644
index 0000000..5090604
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/layout/fragment_home.xml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/layout/fragment_notifications.xml b/WXGFDecoder/app/src/main/res/layout/fragment_notifications.xml
new file mode 100644
index 0000000..d417935
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/layout/fragment_notifications.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/menu/bottom_nav_menu.xml b/WXGFDecoder/app/src/main/res/menu/bottom_nav_menu.xml
new file mode 100644
index 0000000..fb6d040
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/menu/bottom_nav_menu.xml
@@ -0,0 +1,19 @@
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/WXGFDecoder/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/WXGFDecoder/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/WXGFDecoder/app/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 0000000..c209e78
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/WXGFDecoder/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..b2dfe3d
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/WXGFDecoder/app/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 0000000..4f0f1d6
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/WXGFDecoder/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..62b611d
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/WXGFDecoder/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 0000000..948a307
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/WXGFDecoder/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..1b9a695
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/WXGFDecoder/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..28d4b77
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/WXGFDecoder/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9287f50
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/WXGFDecoder/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..aa7d642
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/WXGFDecoder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/WXGFDecoder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9126ae3
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/WXGFDecoder/app/src/main/res/navigation/mobile_navigation.xml b/WXGFDecoder/app/src/main/res/navigation/mobile_navigation.xml
new file mode 100644
index 0000000..946cc75
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/navigation/mobile_navigation.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/raw/test_wxgf.jpg b/WXGFDecoder/app/src/main/res/raw/test_wxgf.jpg
new file mode 100644
index 0000000..54f06d8
Binary files /dev/null and b/WXGFDecoder/app/src/main/res/raw/test_wxgf.jpg differ
diff --git a/WXGFDecoder/app/src/main/res/values-night/themes.xml b/WXGFDecoder/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..5f8933a
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/values/colors.xml b/WXGFDecoder/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..f8c6127
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/values/colors.xml
@@ -0,0 +1,10 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #FFFFFFFF
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/values/dimens.xml b/WXGFDecoder/app/src/main/res/values/dimens.xml
new file mode 100644
index 0000000..e00c2dd
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/values/dimens.xml
@@ -0,0 +1,5 @@
+
+
+ 16dp
+ 16dp
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/values/strings.xml b/WXGFDecoder/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..75c8666
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/values/strings.xml
@@ -0,0 +1,6 @@
+
+ WXGF Decoder
+ Home
+ Dashboard
+ Notifications
+
diff --git a/WXGFDecoder/app/src/main/res/values/themes.xml b/WXGFDecoder/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..28d108d
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/values/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/xml/backup_rules.xml b/WXGFDecoder/app/src/main/res/xml/backup_rules.xml
new file mode 100644
index 0000000..fa0f996
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/xml/backup_rules.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/app/src/main/res/xml/data_extraction_rules.xml b/WXGFDecoder/app/src/main/res/xml/data_extraction_rules.xml
new file mode 100644
index 0000000..9ee9997
--- /dev/null
+++ b/WXGFDecoder/app/src/main/res/xml/data_extraction_rules.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WXGFDecoder/build.gradle.kts b/WXGFDecoder/build.gradle.kts
new file mode 100644
index 0000000..3756278
--- /dev/null
+++ b/WXGFDecoder/build.gradle.kts
@@ -0,0 +1,4 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+plugins {
+ alias(libs.plugins.android.application) apply false
+}
\ No newline at end of file
diff --git a/WXGFDecoder/gradle.properties b/WXGFDecoder/gradle.properties
new file mode 100644
index 0000000..4387edc
--- /dev/null
+++ b/WXGFDecoder/gradle.properties
@@ -0,0 +1,21 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. For more details, visit
+# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Enables namespacing of each library's R class so that its R class includes only the
+# resources declared in the library itself and none from the library's dependencies,
+# thereby reducing the size of the R class for that library
+android.nonTransitiveRClass=true
\ No newline at end of file
diff --git a/WXGFDecoder/gradle/libs.versions.toml b/WXGFDecoder/gradle/libs.versions.toml
new file mode 100644
index 0000000..a2245a1
--- /dev/null
+++ b/WXGFDecoder/gradle/libs.versions.toml
@@ -0,0 +1,30 @@
+[versions]
+agp = "8.8.0"
+junit = "4.13.2"
+junitVersion = "1.1.5"
+espressoCore = "3.5.1"
+appcompat = "1.6.1"
+material = "1.10.0"
+constraintlayout = "2.1.4"
+lifecycleLivedataKtx = "2.6.1"
+lifecycleViewmodelKtx = "2.6.1"
+navigationFragment = "2.6.0"
+navigationUi = "2.6.0"
+media3Common = "1.5.1"
+
+[libraries]
+junit = { group = "junit", name = "junit", version.ref = "junit" }
+ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
+espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
+appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
+material = { group = "com.google.android.material", name = "material", version.ref = "material" }
+constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
+lifecycle-livedata-ktx = { group = "androidx.lifecycle", name = "lifecycle-livedata-ktx", version.ref = "lifecycleLivedataKtx" }
+lifecycle-viewmodel-ktx = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "lifecycleViewmodelKtx" }
+navigation-fragment = { group = "androidx.navigation", name = "navigation-fragment", version.ref = "navigationFragment" }
+navigation-ui = { group = "androidx.navigation", name = "navigation-ui", version.ref = "navigationUi" }
+media3-common = { group = "androidx.media3", name = "media3-common", version.ref = "media3Common" }
+
+[plugins]
+android-application = { id = "com.android.application", version.ref = "agp" }
+
diff --git a/WXGFDecoder/gradle/wrapper/gradle-wrapper.jar b/WXGFDecoder/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and b/WXGFDecoder/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/WXGFDecoder/gradle/wrapper/gradle-wrapper.properties b/WXGFDecoder/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..85030a7
--- /dev/null
+++ b/WXGFDecoder/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Wed Jan 22 21:22:48 PST 2025
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/WXGFDecoder/gradlew b/WXGFDecoder/gradlew
new file mode 100755
index 0000000..4f906e0
--- /dev/null
+++ b/WXGFDecoder/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/WXGFDecoder/gradlew.bat b/WXGFDecoder/gradlew.bat
new file mode 100644
index 0000000..107acd3
--- /dev/null
+++ b/WXGFDecoder/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/WXGFDecoder/settings.gradle.kts b/WXGFDecoder/settings.gradle.kts
new file mode 100644
index 0000000..49f379f
--- /dev/null
+++ b/WXGFDecoder/settings.gradle.kts
@@ -0,0 +1,23 @@
+pluginManagement {
+ repositories {
+ google {
+ content {
+ includeGroupByRegex("com\\.android.*")
+ includeGroupByRegex("com\\.google.*")
+ includeGroupByRegex("androidx.*")
+ }
+ }
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+rootProject.name = "WXGFDecoder"
+include(":app")