2017-07-26 189 views
1

我在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); 
} 

.so files produces by VS2017 project

的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

+0

我想利用VS模板創建一個C++跨平臺移動共享庫,我能夠使用該UWP項目的lib,但我遇到了Android套件後的麻煩。關於MSDN的這方面的文檔更傾向於創建一個完整的跨平臺的c + +移動項目,我不是。我在本地開發,但想要用C++編寫特定的共享功能。 –

+0

因此,基本上,您有一個原生的Android Java應用程序,並且您試圖調用您使用JNI編寫的C++庫?你有什麼問題?你嘗試了什麼,出了什麼問題?你可以創建一個[mcve]顯示你的代碼的相關部分,並顯示你得到的任何異常或錯誤信息? – EJoshuaS

+1

正確,上述幫助? –

回答

1

您可以使用使用Visual Studio構建的libRandString.so;您不需要在您的build.gradle中使用externalNativeBuild塊,也不需要ndkBuild任務,並且不需要nativeLibsToJar任務。 Android Studio將從jniLibs目錄中選取預構建的文件並將它們打包到APK中供您使用。

+0

我現在得到以下異常java.lang.UnsatisfiedLinkError,指出librandstring.so找不到 –

+1

我希望錯誤消息是針對正確大小寫的'libRandString.so'。這意味着你清理了你的** build.gradle **太多了。 –

+1

這有幫助,現在正在工作。標記爲答案 –

相關問題