We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdd0b7c commit ac1519fCopy full SHA for ac1519f
1 file changed
app/src/main/cpp/main.cpp
@@ -6,6 +6,7 @@
6
#include "json.hpp"
7
8
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, "zygisk-PIF", __VA_ARGS__)
9
+#define LOGW(...) __android_log_print(ANDROID_LOG_WARN, "zygisk-PIF", __VA_ARGS__)
10
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, "zygisk-PIF", __VA_ARGS__)
11
12
#define DEX_PATH "/data/adb/modules/playintegrityfix/classes.dex"
@@ -210,7 +211,10 @@ class PlayIntegrityFix : public zygisk::ModuleBase {
210
211
212
if (testSignedRom) {
213
LOGD("--- ROM IS SIGNED WITH TEST KEYS ---");
- spoofSignature = true;
214
+ // spoofSignature = true;
215
+ if (!spoofSignature) {
216
+ LOGW("However, spoofSignature = false");
217
+ }
218
}
219
220
0 commit comments