07-16-2015 05:32 AM
07-16-2015 01:59 PM
./make_sdk_project.sh VrTestApp YourCompanyNameand built with
python build.pyand the app ran perfectly, showing a green screen.
07-16-2015 02:42 PM
07-16-2015 03:01 PM
build.batinstead of Eclipse? Also, just to confirm, are you running it in the VrTemplate directory or the one with the new app?
07-17-2015 04:03 AM
07-17-2015 03:07 PM
oculus.vrtemplateinstead of
oculuswhich cause the JVM to look for
Java_oculus_vrtemplate_MainActivity_nativeSetAppInterfacein OvrApp.cpp. I don't believe the setup script modifies that file so it should have the name
Java_oculus_MainActivity_nativeSetAppInterfaceafter the script has run and thus the lookup fails. If you change the name of the C++ function to what it's looking for, or change the package in MainActivity.java back to oculus then it should work.
07-19-2015 02:36 PM