Skip to content
Merged
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
1 change: 1 addition & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright © Cryptlex LLP. All rights reserved. Use is subject to Cryptlex's [Terms of Service](https://docs.cryptlex.com/legal/terms-of-service).
394 changes: 394 additions & 0 deletions THIRD-PARTY-NOTICES.txt

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions download-libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ cp ./jni/libjnidispatch.so lexfloatclient/src/main/jniLibs/armeabi-v7a
cp ./jni64/libjnidispatch.so lexfloatclient/src/main/jniLibs/arm64-v8a

cp ./android/libs/clang/arm64-v8a/libLexFloatClient.so lexfloatclient/src/main/jniLibs/arm64-v8a
cp ./android/THIRD-PARTY-NOTICES.txt lexfloatclient/src/main/jniLibs/arm64-v8a
cp ./android/libs/clang/armeabi-v7a/libLexFloatClient.so lexfloatclient/src/main/jniLibs/armeabi-v7a
cp ./android/THIRD-PARTY-NOTICES.txt lexfloatclient/src/main/jniLibs/armeabi-v7a

cp $ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so lexfloatclient/src/main/jniLibs/arm64-v8a
cp $ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so lexfloatclient/src/main/jniLibs/armeabi-v7a
Expand Down
9 changes: 7 additions & 2 deletions lexfloatclient/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}

packagingOptions {
merges.add("META-INF/LICENSE")
merges.add("META-INF/NOTICE")
}

namespace 'com.cryptlex.android.lexfloatclient'
}

Expand All @@ -46,8 +51,8 @@ mavenPublishing {
url = 'https://github.com/cryptlex/lexfloatclient-android'
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
name = 'Proprietary'
url = 'https://docs.cryptlex.com/legal/terms-of-service'
}
}
organization {
Expand Down
1 change: 1 addition & 0 deletions lexfloatclient/src/main/resources/META-INF/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright © Cryptlex LLP. All rights reserved. Use is subject to Cryptlex's [Terms of Service](https://docs.cryptlex.com/legal/terms-of-service).
Loading
Loading