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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Add these lines to `build.gradle` of a module.
```groovy
dependencies {
...
implementation 'com.trustdecision.android:mobrisk:1.1.0'
implementation 'com.trustdecision.android:mobrisk:1.1.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
minSdk 21
targetSdk 34
versionCode 12
versionName "1.1.0"
versionName "1.1.1"
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
}
Expand Down
4 changes: 2 additions & 2 deletions trustdevice/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.22.1)
project("trustdevice")

add_library(
trustdevice
tddevicefingerprint

SHARED

Expand Down Expand Up @@ -32,5 +32,5 @@ else()
endif()

target_link_libraries(
trustdevice
tddevicefingerprint
${log-lib})
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class FMCore private constructor() {

companion object {
init {
executeSafe { System.loadLibrary("trustdevice") }
executeSafe { System.loadLibrary("tddevicefingerprint") }
}

val instance: FMCore by lazy(mode = LazyThreadSafetyMode.SYNCHRONIZED) {
Expand Down