-
-
Notifications
You must be signed in to change notification settings - Fork 368
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
1 parent
f4e0c54
commit 2ef939c
Showing
8,654 changed files
with
987,441 additions
and
181 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
-keep class es.chiteroman.playintegrityfix.EntryPoint {public <methods>;} | ||
-keep class es.chiteroman.playintegrityfix.CustomProvider | ||
-keep class es.chiteroman.playintegrityfix.CustomProvider | ||
-keep class es.chiteroman.playintegrityfix.CustomKeyStoreSpi |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
|
||
include $(CLEAR_VARS) | ||
LOCAL_MODULE := zygisk | ||
LOCAL_SRC_FILES := $(LOCAL_PATH)/main.cpp | ||
LOCAL_C_INCLUDES := $(LOCAL_PATH) | ||
|
||
LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/shadowhook/*.c) | ||
LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/shadowhook/common/*.c) | ||
LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/shadowhook/third_party/xdl/*.c) | ||
|
||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook | ||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook/common | ||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook/include | ||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook/third_party/bsd | ||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook/third_party/lss | ||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook/third_party/xdl | ||
|
||
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a) | ||
LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/shadowhook/arch/arm/*.c) | ||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook/arch/arm | ||
else ifeq ($(TARGET_ARCH_ABI),arm64-v8a) | ||
LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/shadowhook/arch/arm64/*.c) | ||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/shadowhook/arch/arm64 | ||
endif | ||
|
||
LOCAL_STATIC_LIBRARIES := libcxx | ||
LOCAL_LDLIBS := -llog | ||
include $(BUILD_SHARED_LIBRARY) | ||
|
||
include $(LOCAL_PATH)/libcxx/Android.mk |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
APP_STL := none | ||
APP_ABI := arm64-v8a armeabi-v7a | ||
APP_CFLAGS := -Oz -flto -fvisibility=hidden -fvisibility-inlines-hidden | ||
APP_CPPFLAGS := -std=c++20 -fno-exceptions -fno-rtti | ||
APP_LDFLAGS := -Oz -flto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
BasedOnStyle: LLVM | ||
|
||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: Consecutive | ||
AlignConsecutiveBitFields: Consecutive | ||
AlignEscapedNewlines: Right | ||
AlignOperands: AlignAfterOperator | ||
AlignTrailingComments: true | ||
AllowAllArgumentsOnNextLine: true | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortFunctionsOnASingleLine: true | ||
AllowShortLambdasOnASingleLine: All | ||
AttributeMacros: ['_LIBCPP_HIDE_FROM_ABI', | ||
'_LIBCPP_CONSTEXPR', | ||
'_LIBCPP_CONSTEXPR_SINCE_CXX14', | ||
'_LIBCPP_CONSTEXPR_SINCE_CXX17', | ||
'_LIBCPP_CONSTEXPR_SINCE_CXX20', | ||
'_LIBCPP_CONSTEXPR_SINCE_CXX23', | ||
'_LIBCPP_ALIGNOF', | ||
'_ALIGNAS_TYPE', | ||
'_ALIGNAS', | ||
'_LIBCPP_NORETURN', | ||
'_LIBCPP_ALWAYS_INLINE', | ||
'_LIBCPP_DISABLE_EXTENTSION_WARNING', | ||
'_LIBCPP_HIDDEN', | ||
'_LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS', | ||
'_LIBCPP_FUNC_VIS', | ||
'_LIBCPP_TYPE_VIS', | ||
'_LIBCPP_TEMPLATE_VIS', | ||
'_LIBCPP_TEMPLATE_DATA_VIS', | ||
'_LIBCPP_EXPORTED_FROM_ABI', | ||
'_LIBCPP_OVERRIDABLE_FUNC_VIS', | ||
'_LIBCPP_EXCEPTION_ABI', | ||
'_LIBCPP_ENUM_VIS', | ||
'_LIBCPP_EXTERN_TEMPLATE_TYPE_VIS', | ||
'_LIBCPP_INTERNAL_LINKAGE', | ||
'_LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION', | ||
'_LIBCPP_HIDE_FROM_ABI_AFTER_V1', | ||
'_LIBCPP_INLINE_VISIBILITY', | ||
'_LIBCPP_CONSTEVAL', | ||
'_LIBCPP_NOALIAS', | ||
'_LIBCPP_USING_IF_EXISTS', | ||
'_LIBCPP_DEPRECATED', | ||
'_LIBCPP_DEPRECATED_IN_CXX11', | ||
'_LIBCPP_DEPRECATED_IN_CXX14', | ||
'_LIBCPP_DEPRECATED_IN_CXX17', | ||
'_LIBCPP_DEPRECATED_IN_CXX20', | ||
'_LIBCPP_NODISCARD', | ||
'_LIBCPP_NODISCARD_EXT', | ||
'_LIBCPP_NO_DESTROY', | ||
'_LIBCPP_WEAK', | ||
'_LIBCPP_CONSTINIT', | ||
'_LIBCPP_FALLTHROUGH', | ||
'_LIBCPP_STANDALONE_DEBUG', | ||
'_LIBCPP_NO_UNIQUE_ADDRESS', | ||
] | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
BreakBeforeConceptDeclarations: true | ||
BreakInheritanceList: BeforeColon | ||
EmptyLineAfterAccessModifier: Never | ||
EmptyLineBeforeAccessModifier: Always | ||
IndentWrappedFunctionNames: false | ||
IndentRequires: true | ||
InsertTrailingCommas: Wrapped | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MaxEmptyLinesToKeep: 1 | ||
PackConstructorInitializers: NextLine | ||
|
||
PenaltyIndentedWhitespace: 2 | ||
|
||
Language: Cpp | ||
Standard: c++20 | ||
SpacesInAngles: Leave | ||
|
||
AlwaysBreakTemplateDeclarations: true | ||
PointerAlignment: Left | ||
|
||
|
||
# Disable formatting options which may break tests. | ||
SortIncludes: false | ||
ReflowComments: false | ||
|
||
# libc++'s preferred indentions of preprocessor statements. | ||
IndentPPDirectives: AfterHash | ||
|
||
# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting | ||
ColumnLimit: 120 |
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
Checks: > | ||
bugprone-copy-constructor-init, | ||
bugprone-dangling-handle, | ||
bugprone-infinite-loop, | ||
bugprone-stringview-nullptr, | ||
bugprone-use-after-move, | ||
llvm-include-order, | ||
llvm-namespace-comment, | ||
misc-definitions-in-headers, | ||
misc-misplaced-const, | ||
misc-non-copyable-objects, | ||
misc-uniqueptr-reset-release, | ||
modernize-loop-convert, | ||
modernize-redundant-void-arg, | ||
modernize-use-override, | ||
readability-duplicate-include, | ||
readability-identifier-naming, | ||
readability-function-cognitive-complexity, | ||
readability-function-size, | ||
readability-misplaced-array-index, | ||
readability-redundant-control-flow, | ||
readability-redundant-function-ptr-dereference, | ||
readability-redundant-preprocessor, | ||
readability-simplify-boolean-expr, | ||
readability-simplify-subscript-expr, | ||
readability-uniqueptr-delete-release, | ||
CheckOptions: | ||
- key: readability-function-cognitive-complexity.Threshold | ||
value: 143 # TODO: bring that number down | ||
- key: readability-function-size.LineThreshold | ||
value: 194 # TODO: bring that number down | ||
- key: readability-identifier-naming.GetConfigPerFile | ||
value: false | ||
- key: readability-identifier-naming.ParameterCase | ||
value: lower_case | ||
- key: readability-identifier-naming.ParameterPrefix | ||
value: __ | ||
- key: readability-identifier-naming.PrivateMemberCase | ||
value: lower_case | ||
- key: readability-identifier-naming.PrivateMemberPrefix | ||
value: __ | ||
- key: readability-identifier-naming.PrivateMemberSuffix | ||
value: _ | ||
|
||
# TODO: investigate these checks | ||
# bugprone-branch-clone, | ||
# bugprone-macro-parentheses, | ||
# cppcoreguidelines-prefer-member-initializer, | ||
# misc-unused-parameters, | ||
# modernize-use-bool-literals, | ||
# modernize-use-default-member-init, | ||
# modernize-use-equals-default, | ||
# modernize-use-equals-delete, | ||
# modernize-use-nullptr, | ||
# portability-restrict-system-includes, | ||
# readability-function-cognitive-complexity, | ||
# readability-implicit-bool-conversion, | ||
# readability-isolate-declaration, | ||
# readability-redundant-access-specifiers, | ||
# readability-redundant-declaration, | ||
# readability-redundant-member-init, | ||
# |
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
#lib/ # We actually have things checked in to lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# MSVC libraries test harness | ||
env.lst | ||
keep.lst | ||
|
||
# Editor by-products | ||
.vscode/ |
Oops, something went wrong.