More housekeeping

This commit is contained in:
osm0sis
2023-12-01 22:55:07 -04:00
parent 7c0769c2c2
commit b87ebf75b1
11 changed files with 11 additions and 10 deletions

View File

@@ -30,8 +30,8 @@ jobs:
- name: Build with Gradle
run: ./gradlew assembleRelease
- name: Create PlayIntegrityFork zip
- name: Upload PlayIntegrityFork-CI.zip
uses: actions/upload-artifact@v3
with:
name: PlayIntegrityFork
name: PlayIntegrityFork-CI
path: module/*

View File

@@ -5,3 +5,4 @@
- Use custom.pif.json for custom spoofing if it exists, self-contained in the module directory, and restore it after module updates
- Move props that need to be changed earlier into post-fs-data.sh
- Warn of possible conflict if MagiskHidePropsConfig (MHPC) is installed
- Continue to use ShadowHook for now

View File

View File

@@ -71,4 +71,4 @@ tasks.register<Zip>("zip") {
afterEvaluate {
tasks["assembleRelease"].finalizedBy("copyFiles", "zip")
}
}

View File

@@ -1,3 +1,3 @@
-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

View File

@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest />
<manifest />

View File

@@ -30,4 +30,4 @@ LOCAL_STATIC_LIBRARIES := libcxx
LOCAL_LDLIBS := -llog
include $(BUILD_SHARED_LIBRARY)
include $(LOCAL_PATH)/libcxx/Android.mk
include $(LOCAL_PATH)/libcxx/Android.mk

View File

@@ -1,3 +1,3 @@
APP_STL := none
APP_CFLAGS := -Oz -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden
APP_CPPFLAGS := -std=c++20
APP_CPPFLAGS := -std=c++20

View File

@@ -276,4 +276,4 @@ static void companion(int fd) {
REGISTER_ZYGISK_MODULE(PlayIntegrityFix)
REGISTER_ZYGISK_COMPANION(companion)
REGISTER_ZYGISK_COMPANION(companion)

View File

@@ -111,4 +111,4 @@ public final class EntryPoint {
static void LOG(String msg) {
Log.d("PIF/Java", msg);
}
}
}

View File

@@ -2,5 +2,5 @@
"version": "v3",
"versionCode": 3000,
"zipUrl": "https://github.com/osm0sis/PlayIntegrityFork/releases/download/v3/PlayIntegrityFork-v3.zip",
"changelog": "https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/changelog.md"
"changelog": "https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/CHANGELOG.md"
}