3 Development Notes¶
3.1 Enter the developer mode of device¶
Please check details from this FAQ link on how to enable developer https://sdk.picovr.com/docs/FAQ/chapter_one.html
3.2 Android Manifest file¶
- Special meta-data needs to be added; otherwise, an exception will be displayed
<meta-data android:name="pvr.app.type" android:value="vr"/>
- All Acitivity that need to be displayed need to be inherited from
com.picovr.vractivity.VRActivity
- Add the necessary permissions
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.INJECT_EVENTS" />