我正在编写一个在我的Unity android项目中使用的android库,以便利用一个没有良好C#等效的android库。库本身是打包的,工作正常,除非我运行应用程序,我收到一个错误:
AndroidJavaException: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/vision/face/FaceDetector$Builder;
打开我的AAR我注意到我正在使用的Google Vision库不在那里,而且由于Unity无法安装Android库,因此无法解析它。
如何在安装库的情况下打包我的应用程序?
这是我的build.gradle
依赖项:
dependencies {
provided fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
provided files('/Applications/Unity/PlaybackEngines/AndroidPlayer/Variations/mono/Release/Classes/classes.jar')
compile 'com.google.android.gms:play-services-vision:8.1.0'
}
谢谢!
答案 0 :(得分:0)
我已经解决了这个问题,虽然是以迂回和间接的方式。
我设法转到我的m2repository并获得了库的AAR,以及它的所有依赖项,然后我在Unity项目中添加了Android插件。
这意味着所有课程都在范围内。