我在Visual Studio 2017中爲iOS,UWP和Android創建了一個共享的visual C++跨平臺移動庫。我成功地創建了一個Windows RT組件包裝器,供庫在C#UWP中使用。我刪除了iOS庫,因爲我不需要它。所有剩下的就是Android項目。目前我正在努力如何爲共享庫編寫包裝並將其導入到android studio中。我查看了MSDN上提供的文檔,但是它更深入地介紹瞭如何創建跨平臺的C++應用程序,以及關於如何利用共享靜態庫的詳細信息。如何將visual C++庫導入到android studio項目中?
RandString.java:
package com.myapplication;
/**
* Created by yorel56 on 7/26/2017.
*/
public class RandString {
static{
System.loadLibrary("libRandString");
}
public native String GetString();
public native String GetString(int index);
}
的build.gradle(模塊):
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.myapplication"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags ""
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
sourceSets.main {
jni.srcDirs = [] //disable automatic ndk-build call
jniLibs.srcDir 'src/main/libs/' //integrate your libs from libs instead of jniLibs
}
tasks.withType(JavaCompile) {
compileTask -> compileTask.dependsOn(nativeLibsToJar)
}
task ndkBuild(type: Exec, description: 'compile native code') {
def ndkDir = "C:\\Users\\yorel56\\AppData\\Local\\Android\\sdk\\ndk-bundle"
workingDir "src/main/jni"
commandLine "$ndkDir/ndk-build"
}
task nativeLibsToJar(type: Jar, description: 'create a jar archive of the native libs') {
destinationDir file("$buildDir/native-libs")
baseName 'native-libs'
extension 'jar'
from fileTree(dir: 'libs', include: '**/*.so')
into 'lib/'
}
nativeLibsToJar.dependsOn {
ndkBuild // comment that, when you don't want to rerun ndk-build script
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile fileTree(dir: "$buildDir/native-libs", include: 'native-libs.jar')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
我目前得到的錯誤是 '天然' 這裏不允許使用,當我選擇讓Android Studio通過在native_lib.cpp中創建函數來修復它時,我仍然會遇到錯誤。我試着按照文檔here。
我想利用VS模板創建一個C++跨平臺移動共享庫,我能夠使用該UWP項目的lib,但我遇到了Android套件後的麻煩。關於MSDN的這方面的文檔更傾向於創建一個完整的跨平臺的c + +移動項目,我不是。我在本地開發,但想要用C++編寫特定的共享功能。 –
因此,基本上,您有一個原生的Android Java應用程序,並且您試圖調用您使用JNI編寫的C++庫?你有什麼問題?你嘗試了什麼,出了什麼問題?你可以創建一個[mcve]顯示你的代碼的相關部分,並顯示你得到的任何異常或錯誤信息? – EJoshuaS
正確,上述幫助? –