From 7086c682c21c592bb523c7a21d704c1a11b0a8b6 Mon Sep 17 00:00:00 2001 From: Wang Han Date: Sat, 13 Mar 2021 13:50:11 +0800 Subject: [PATCH] [core] `io_github_lsposed` -> `org_lsposed` (#351) --- core/src/main/cpp/main/include/native_util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/cpp/main/include/native_util.h b/core/src/main/cpp/main/include/native_util.h index fe33c3a4..3fd2dd23 100644 --- a/core/src/main/cpp/main/include/native_util.h +++ b/core/src/main/cpp/main/include/native_util.h @@ -55,13 +55,13 @@ namespace lspd { #define LSP_NATIVE_METHOD(className, functionName, signature) \ { #functionName, \ signature, \ - _NATIVEHELPER_JNI_MACRO_CAST(void*) (Java_io_github_lsposed_lspd_nativebridge_## className ## _ ## functionName) \ + _NATIVEHELPER_JNI_MACRO_CAST(void*) (Java_org_lsposed_lspd_nativebridge_## className ## _ ## functionName) \ } #endif #ifndef LSP_DEF_NATIVE_METHOD #define LSP_DEF_NATIVE_METHOD(ret, className, functionName, ...) \ - extern "C" ret Java_io_github_lsposed_lspd_nativebridge_## className ## _ ## functionName (JNI_START, ## __VA_ARGS__) + extern "C" ret Java_org_lsposed_lspd_nativebridge_## className ## _ ## functionName (JNI_START, ## __VA_ARGS__) #endif #define REGISTER_LSP_NATIVE_METHODS(class_name) \