This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
81 additions
and
3,336 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
|
||
# ============================================================================ | ||
# Dobby static libraries. | ||
|
||
include $(CLEAR_VARS) | ||
LOCAL_MODULE := libdobby | ||
LOCAL_SRC_FILES := $(LOCAL_PATH)/src/libraries/$(TARGET_ARCH_ABI)/libdobby.a | ||
include $(PREBUILT_STATIC_LIBRARY) | ||
|
||
# ============================================================================ | ||
# Build the GrowtopiaFix library. | ||
|
||
include $(CLEAR_VARS) | ||
LOCAL_MODULE := GrowtopiaFix | ||
LOCAL_ARM_MODE := arm | ||
|
||
LOCAL_STATIC_LIBRARIES := libdobby | ||
|
||
LOCAL_CFLAGS := -fvisibility=hidden | ||
LOCAL_CPPFLAGS := -w -s -fvisibility=hidden -pthread -Wall -O3 -std=c++11 | ||
LOCAL_CPPFLAGS := -w -s -fvisibility=hidden -pthread -Wall -O3 -std=c++17 | ||
|
||
FILE_LIST := $(wildcard $(LOCAL_PATH)/src/*.c*) | ||
FILE_LIST += $(wildcard $(LOCAL_PATH)/src/game/*.c*) | ||
FILE_LIST += $(wildcard $(LOCAL_PATH)/src/include/KittyMemory/*.c*) | ||
FILE_LIST += $(wildcard $(LOCAL_PATH)/src/include/Substrate/*.c*) | ||
FILE_LIST += $(wildcard $(LOCAL_PATH)/src/include/And64InlineHook/*.c*) | ||
|
||
LOCAL_SRC_FILES := $(FILE_LIST:$(LOCAL_PATH)/%=%) | ||
|
||
LOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv2 | ||
LOCAL_LDLIBS := -llog -landroid | ||
|
||
include $(BUILD_SHARED_LIBRARY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#pragma once | ||
|
||
namespace Game { | ||
namespace Hook { | ||
namespace game { | ||
namespace hook { | ||
void init(); | ||
} // namespace hook | ||
} // namespace game |
Oops, something went wrong.