Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ set(NATIVECRYPTO_SOURCES
pal_cipher.c
pal_hmac.c
pal_jni.c
pal_jni_onload.c
pal_lifetime.c
pal_memory.c
pal_misc.c
Expand All @@ -33,7 +34,7 @@ set(NATIVECRYPTO_SOURCES

add_library(System.Security.Cryptography.Native.Android
SHARED
${NATIVECRYPTO_SOURCES} pal_jni_onload.c
${NATIVECRYPTO_SOURCES}
${VERSION_FILE_PATH}
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "pal_jni.h"

JNIEXPORT jint JNICALL
__attribute__((weak)) JNIEXPORT jint JNICALL
JNI_OnLoad(JavaVM *vm, void *reserved)
{
return AndroidCryptoNative_InitLibraryOnLoad (vm, reserved);
Expand Down
Loading