Reputation: 19
I'm trying to run some of the Vuforia's samples in eclipse, i "run as android application", then I run the application on my smartphone, an LG G2 mini with android 5.0.2. When the application starts, shows me the description page of the application, I touch "Start". My screen turns white, than blac,than white again and in the end the application returns me to the home. some suggestions? thanks.
Upvotes: 0
Views: 384
Reputation: 1
Is very important to had libVuforia.so in the correct place according MHP. You have to get SampleApplicationSesion, the api key inin line 336.
Upvotes: 0
Reputation: 2731
you need to generate your api key in Vuforia developer page
. also you need to add jni to your project and put .so libs in it (in my case vuforia-sdk-android-4-2-3\build\lib) ,put "armeabi-v7a" folder in "jniLibs" folder and you can now build your project.
if you using gradle your file structure should be like this:
app\src\main\jniLibs\armeabi-v7a\libVuforia.so
Upvotes: 1