2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 21:55:10 +00:00

Added conscrypt readme

This commit is contained in:
Vineet Garg
2015-06-28 20:40:45 +05:30
parent d93eb5d71e
commit 67227f4aa0
2 changed files with 19 additions and 1 deletions

18
libs/conscrypt.readme Normal file
View File

@@ -0,0 +1,18 @@
Conscrypt
https://conscrypt.org/
Conscrypt is a Java Security Provider that uses OpenSSL. Since Android uses it internally too, but that is not updated. These libraries are built directly form AOSP source on 28-Jun-2015.
The source for conscrypt is availble at https://android.googlesource.com/platform/external/conscrypt
The structure of two jar files used here is as follows :
conscrypt.jar is the Java library for OpenSSL Provider.
conscrypt_jni.jar is shared library for JNI for OpenSSL Provider, packed into a jar.
To update these libraries, they can be diretly built from AOSP with build type as "user"
conscrypt.jar = $OUT_DIR/target/common/obj/JAVA_LIBRARIES/conscrypt_unbundled_intermediates/javalib.jar
conscrypt_jni.jar = $OUT_DIR/target/product/generic/obj/lib/libconscrypt_jni.so
and put as lib/armeabi/libconscrypt_jni.so and compress lib directory as jar archive.