Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 6 .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '17'
Expand All @@ -38,7 +38,7 @@ jobs:
ls -lh apk_out

- name: Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: android-apk
path: apk_out/*.apk
Expand Down
3 changes: 0 additions & 3 deletions 3 .idea/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion 1 .idea/.name

This file was deleted.

6 changes: 0 additions & 6 deletions 6 .idea/AndroidProjectSystem.xml

This file was deleted.

6 changes: 0 additions & 6 deletions 6 .idea/compiler.xml

This file was deleted.

10 changes: 0 additions & 10 deletions 10 .idea/deploymentTargetSelector.xml

This file was deleted.

18 changes: 0 additions & 18 deletions 18 .idea/gradle.xml

This file was deleted.

8 changes: 0 additions & 8 deletions 8 .idea/markdown.xml

This file was deleted.

10 changes: 0 additions & 10 deletions 10 .idea/migrations.xml

This file was deleted.

7 changes: 0 additions & 7 deletions 7 .idea/misc.xml

This file was deleted.

17 changes: 0 additions & 17 deletions 17 .idea/runConfigurations.xml

This file was deleted.

6 changes: 0 additions & 6 deletions 6 .idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion 2 app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ android {
versionName "1.0"

ndk {
abiFilters 'arm64-v8a'
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
}

multiDexEnabled false
Expand Down
2 changes: 1 addition & 1 deletion 2 app/src/main/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_ABI := arm64-v8a
APP_ABI := arm64-v8a armeabi-v7a x86 x86_64
APP_STL := c++_static
APP_OPTIM := release
APP_THIN_ARCHIVE := true
Expand Down
4 changes: 1 addition & 3 deletions 4 app/src/main/jni/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include "Includes/Utils.h"

#include "KittyMemory/MemoryPatch.h"
#include "And64InlineHook/And64InlineHook.hpp"
#include "Menu.h"


Expand All @@ -34,7 +35,6 @@ struct My_Patches {
} hexPatches;



void *hack_thread(void *) {
LOGI(OBFUSCATE("pthread created"));

Expand All @@ -48,7 +48,6 @@ void *hack_thread(void *) {
#if defined(__aarch64__)



#else


Expand Down Expand Up @@ -135,7 +134,6 @@ JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *) {
}



__attribute__((constructor))
void lib_main() {
pthread_t ptid;
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.