Skip to content

Commit

Permalink
v14.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chiteroman committed Dec 22, 2023
1 parent 7ab29dd commit c7e3d35
Show file tree
Hide file tree
Showing 896 changed files with 182 additions and 221,518 deletions.
8 changes: 8 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ android {
ndkVersion = "26.1.10909125"
buildToolsVersion = "34.0.0"

buildFeatures {
prefab = true
}

packaging {
jniLibs {
excludes += "**/libdobby.so"
Expand Down Expand Up @@ -58,6 +62,10 @@ android {
}
}

dependencies {
implementation("dev.rikka.ndk.thirdparty:cxx:1.2.0")
}

tasks.register("copyFiles") {
doLast {
val moduleFolder = project.rootDir.resolve("module")
Expand Down
5 changes: 4 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
-ignorewarnings
-dontobfuscate
-keep class es.chiteroman.playintegrityfix.EntryPoint {public <methods>;}
-keep class es.chiteroman.playintegrityfix.CustomProvider
-keep class es.chiteroman.playintegrityfix.CustomKeyStoreSpi
-keep class es.chiteroman.playintegrityfix.CustomKeyStoreSpi
-keep class es.chiteroman.playintegrityfix.CustomCertificates
4 changes: 2 additions & 2 deletions app/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.22.1)

project("playintegrityfix")

link_libraries(${CMAKE_SOURCE_DIR}/libcxx/${CMAKE_ANDROID_ARCH_ABI}.a)
find_package(cxx REQUIRED CONFIG)

include_directories(libcxx/include)
link_libraries(cxx::cxx)

add_library(${CMAKE_PROJECT_NAME} SHARED module.cpp)

Expand Down
Loading

0 comments on commit c7e3d35

Please sign in to comment.