Xposed Detector

static library prefab to detect xposed and clear hooks.

Лицензия

Лицензия

Группа

Группа

io.github.vvb2060.ndk
Идентификатор

Идентификатор

xposeddetector
Последняя версия

Последняя версия

2.2
Дата

Дата

Тип

Тип

aar
Описание

Описание

Xposed Detector
static library prefab to detect xposed and clear hooks.
Ссылка на сайт

Ссылка на сайт

https://github.com/vvb2060/XposedDetector
Система контроля версий

Система контроля версий

https://github.com/vvb2060/XposedDetector

Скачать xposeddetector

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/io.github.vvb2060.ndk/xposeddetector/ -->
<dependency>
    <groupId>io.github.vvb2060.ndk</groupId>
    <artifactId>xposeddetector</artifactId>
    <version>2.2</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/io.github.vvb2060.ndk/xposeddetector/
implementation 'io.github.vvb2060.ndk:xposeddetector:2.2'
// https://jarcasting.com/artifacts/io.github.vvb2060.ndk/xposeddetector/
implementation ("io.github.vvb2060.ndk:xposeddetector:2.2")
'io.github.vvb2060.ndk:xposeddetector:aar:2.2'
<dependency org="io.github.vvb2060.ndk" name="xposeddetector" rev="2.2">
  <artifact name="xposeddetector" type="aar" />
</dependency>
@Grapes(
@Grab(group='io.github.vvb2060.ndk', module='xposeddetector', version='2.2')
)
libraryDependencies += "io.github.vvb2060.ndk" % "xposeddetector" % "2.2"
[io.github.vvb2060.ndk/xposeddetector "2.2"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Xposed Detector

static library prefab to detect xposed and clear hooks.

This library is based on the genuine.

Integration

Gradle:

implementation 'io.github.vvb2060.ndk:xposeddetector:2.2'

This library is Prefab, so you will need to enable it in your project (Android Gradle Plugin 4.1+):

android {
    ...
    buildFeatures {
        ...
        prefab true
    }
}

Usage

ndk-build

you can use xposed_detector in your Android.mk. For example, if your application defines libapp.so and it uses xposed_detector, your Android.mk file should include the following:

include $(CLEAR_VARS)
LOCAL_MODULE           := app
LOCAL_SRC_FILES        := app.cpp
LOCAL_STATIC_LIBRARIES := xposed_detector
include $(BUILD_SHARED_LIBRARY)

# If you don't need your project to build with NDKs older than r21, you can omit
# this block.
ifneq ($(call ndk-major-at-least,21),true)
    $(call import-add-path,$(NDK_GRADLE_INJECTED_IMPORT_PATH))
endif

$(call import-module,prefab/xposeddetector)

CMake

you can use xposed_detector in your CMakeLists.txt. For example, if your application defines libapp.so and it uses xposed_detector, your CMakeLists.txt file should include the following:

add_library(app SHARED app.cpp)

# Add these two lines.
find_package(xposeddetector REQUIRED CONFIG)
target_link_libraries(app xposeddetector::xposed_detector)

Sample application

Use the gradlew :app:iR command to install sample app, or download CI Artifacts.

Версии библиотеки

Версия
2.2