From 08cc6f7e33acc40c61dc8106a9deeaf04e154481 Mon Sep 17 00:00:00 2001 From: snake-4 <18491360+snake-4@users.noreply.github.com> Date: Mon, 25 Mar 2024 21:21:45 +0100 Subject: [PATCH] Changed to C++14, updated README.md --- README.md | 2 -- module/jni/Application.mk | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 8fffa3a..ed69e49 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ ## Zygisk Assistant This module makes Zygisk more stealthy. -The module sets **DLCLOSE_MODULE_LIBRARY** and **FORCE_DENYLIST_UNMOUNT** Zygisk flags for all non-root application processes. - Please note that installing this module could lead to compatibility issues with other Zygisk modules. If you encounter any problems, please create an issue in this repository. diff --git a/module/jni/Application.mk b/module/jni/Application.mk index 1db1d73..40aafc6 100644 --- a/module/jni/Application.mk +++ b/module/jni/Application.mk @@ -1,4 +1,4 @@ APP_ABI := armeabi-v7a arm64-v8a x86 x86_64 -APP_CPPFLAGS := -std=c++20 -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden +APP_CPPFLAGS := -std=c++14 -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden APP_STL := none APP_PLATFORM := android-31