From b87ebf75b15871d6c9d33cda07c847be3ca9690b Mon Sep 17 00:00:00 2001 From: osm0sis Date: Fri, 1 Dec 2023 22:55:07 -0400 Subject: [PATCH] More housekeeping --- .github/workflows/android.yml | 4 ++-- changelog.md => CHANGELOG.md | 1 + COPYING => LICENSE | 0 app/build.gradle.kts | 2 +- app/proguard-rules.pro | 2 +- app/src/main/AndroidManifest.xml | 2 +- app/src/main/cpp/Android.mk | 2 +- app/src/main/cpp/Application.mk | 2 +- app/src/main/cpp/main.cpp | 2 +- .../main/java/es/chiteroman/playintegrityfix/EntryPoint.java | 2 +- update.json | 2 +- 11 files changed, 11 insertions(+), 10 deletions(-) rename changelog.md => CHANGELOG.md (93%) rename COPYING => LICENSE (100%) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 08c1a03..b8b1989 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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/* diff --git a/changelog.md b/CHANGELOG.md similarity index 93% rename from changelog.md rename to CHANGELOG.md index 396581d..0e103f0 100644 --- a/changelog.md +++ b/CHANGELOG.md @@ -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 diff --git a/COPYING b/LICENSE similarity index 100% rename from COPYING rename to LICENSE diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 57890bd..4445c75 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -71,4 +71,4 @@ tasks.register("zip") { afterEvaluate { tasks["assembleRelease"].finalizedBy("copyFiles", "zip") -} \ No newline at end of file +} diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 2f11af0..17b7509 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -1,3 +1,3 @@ -keep class es.chiteroman.playintegrityfix.EntryPoint {public ;} -keep class es.chiteroman.playintegrityfix.CustomProvider --keep class es.chiteroman.playintegrityfix.CustomKeyStoreSpi \ No newline at end of file +-keep class es.chiteroman.playintegrityfix.CustomKeyStoreSpi diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 568741e..8072ee0 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,2 +1,2 @@ - \ No newline at end of file + diff --git a/app/src/main/cpp/Android.mk b/app/src/main/cpp/Android.mk index 9632627..7a6dd5c 100644 --- a/app/src/main/cpp/Android.mk +++ b/app/src/main/cpp/Android.mk @@ -30,4 +30,4 @@ LOCAL_STATIC_LIBRARIES := libcxx LOCAL_LDLIBS := -llog include $(BUILD_SHARED_LIBRARY) -include $(LOCAL_PATH)/libcxx/Android.mk \ No newline at end of file +include $(LOCAL_PATH)/libcxx/Android.mk diff --git a/app/src/main/cpp/Application.mk b/app/src/main/cpp/Application.mk index ad31ed4..51fecb7 100644 --- a/app/src/main/cpp/Application.mk +++ b/app/src/main/cpp/Application.mk @@ -1,3 +1,3 @@ APP_STL := none APP_CFLAGS := -Oz -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden -APP_CPPFLAGS := -std=c++20 \ No newline at end of file +APP_CPPFLAGS := -std=c++20 diff --git a/app/src/main/cpp/main.cpp b/app/src/main/cpp/main.cpp index 70ee610..142273b 100644 --- a/app/src/main/cpp/main.cpp +++ b/app/src/main/cpp/main.cpp @@ -276,4 +276,4 @@ static void companion(int fd) { REGISTER_ZYGISK_MODULE(PlayIntegrityFix) -REGISTER_ZYGISK_COMPANION(companion) \ No newline at end of file +REGISTER_ZYGISK_COMPANION(companion) diff --git a/app/src/main/java/es/chiteroman/playintegrityfix/EntryPoint.java b/app/src/main/java/es/chiteroman/playintegrityfix/EntryPoint.java index ef65764..d8b8ada 100644 --- a/app/src/main/java/es/chiteroman/playintegrityfix/EntryPoint.java +++ b/app/src/main/java/es/chiteroman/playintegrityfix/EntryPoint.java @@ -111,4 +111,4 @@ public final class EntryPoint { static void LOG(String msg) { Log.d("PIF/Java", msg); } -} \ No newline at end of file +} diff --git a/update.json b/update.json index 2736ec1..15999d7 100644 --- a/update.json +++ b/update.json @@ -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" }