Vuforia导出到安卓手机下运行初始化失败的解决方案

To fix this, you simply need to add this line into the AndroidManifest.xml under Assets/Plugins/Android, setting the targetSDKversion to a value lower than 23 (e.g. set it to 21 or 22):

<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="22" />

This will make it work on any device (including those on Android 6.0, as well as the ones on older versions, down to the minSDKVersion you have set)

posted on 2016-06-03 14:24  快要结束了  阅读(1266)  评论(0编辑  收藏  举报

导航