Я использую готовую библиотеку c ++ с android студией, которая не подбирается студией. Я создал этот файл с помощью ndk-build в той же версии ОС и студии, но на другой машине. Скопировав файлы на новый компьютер, Studio создает неопределенные ошибки ссылок для новых функций c ++ в lib. При проверке с помощью команды nm, символ присутствует в файле. Он выбирает старый lib откуда-то, а старые функции не выдают таких ошибок. Попытка:
- Аннулирование кэша и перезапуск.
- Построение чистого проекта.
- ndk-build снова с использованием только этого файла (без cpp)
Но безуспешно.
Я помещаю .so файл в myproject / app / libs / x86 / libalgos.so , а также в myproject / app / jni /libs/x86/libalgos.so
cmakelists:
.
.
.
add_library(algos SHARED IMPORTED)
set_target_properties(algos PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/../../../libs/x86/libalgos.so)
target_include_directories(native-lib PRIVATE ${CMAKE_SOURCE_DIR}/ )
target_link_libraries( # Specifies the target library.
native-lib
# Links the target library to the log library
# included in the NDK.
algos ${log-lib})
Android .mk [Местоположение: myproject / app / jni ]
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := algos
LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libalgos.so
LOCAL_EXPORT_C_INCLUDES := include
include $(PREBUILT_SHARED_LIBRARY)
Applicattion.mk [Расположение: myproject / app / jni ]
APP_CFLAGS += -Wno-error=format-security
APP_ABI := x86
APP_MODULES := algos
APP_OPTIM := debug
build.gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.example.cryptotrading"
//minSdkVersion 15
minSdkVersion 26 //---changed for rhino implementation (invoke customs)
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags ""
}
}
ndk {
abiFilters 'x86'
}
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "src/main/cpp/CMakeLists.txt"
version "3.10.2"
}
}
sourceSets {
main {
jniLibs.srcDirs = ['jni/', 'libs/', 'app/libs/', '${CMAKE_SOURCE_DIR}/../../..//libs/']
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.preference:preference:1.1.0-alpha05'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.android.material:material:1.0.0'
//implementation files('./libs/js.jar')
implementation 'org.mozilla:rhino:1.7.12'
//implementation 'org.apache.commons:commons-text:1.7'
//compile group: 'commons-codec', name: 'commons-codec', version: '1.7'
//compile 'com.squareup.okhttp3:okhttp:3.4.1'
implementation("com.squareup.okhttp3:okhttp:4.4.0")
implementation 'com.googlecode.json-simple:json-simple:1.1'
//compile 'com.alibaba.fastjson:1.2.47'
def room_version = "2.2.4"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
// optional - Kotlin Extensions and Coroutines support for Room
implementation "androidx.room:room-ktx:$room_version"
// optional - RxJava support for Room
implementation "androidx.room:room-rxjava2:$room_version"
implementation 'androidx.annotation:annotation:1.1.0'
compile "com.androidplot:androidplot-core:1.5.7"
}