VIVE WAVE permissions
Developers using VIVE WAVE will also need the correct permissions in AndroidManifest.xml to use the DRM API.
-
In the root of your Android project directory, open
AndroidManifest.xml
. -
Add the following line to
<manifest>
:<uses-permission android:name="com.viveport.CHECK_LICENSE" />
Example:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ...">
<... />
<uses-permission android:name="com.viveport.CHECK_LICENSE" />
<... />
</manifest>