mirror of
https://github.com/kdrag0n/safetynet-fix.git
synced 2024-11-19 11:11:22 +00:00
fc5937bec0
- Ported from Riru implementation - Limited Java payload to com.google.android.gms.unstable as a fix for issues caused by model misdetection and flag provisioning - Root companion process to serve classes.dex over socket - Forces DenyList unmounting to pass basicIntegrity
20 lines
501 B
Makefile
20 lines
501 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := safetynetfix
|
|
LOCAL_SRC_FILES := module.cpp
|
|
LOCAL_STATIC_LIBRARIES := libcxx
|
|
LOCAL_LDLIBS := -llog
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include jni/libcxx/Android.mk
|
|
|
|
# If you do not want to use libc++, link to system stdc++
|
|
# so that you can at least call the new operator in your code
|
|
|
|
# include $(CLEAR_VARS)
|
|
# LOCAL_MODULE := example
|
|
# LOCAL_SRC_FILES := example.cpp
|
|
# LOCAL_LDLIBS := -llog -lstdc++
|
|
# include $(BUILD_SHARED_LIBRARY)
|