blob: 6a4617d4624d452a30d97d279ebd7b1f75873db5 [file] [log] [blame]
package com.google.vr.platform;
import android.annotation.UnsupportedAppUsage;
import android.os.SystemProperties;
/**
* Class to get information about the vr device.
* @hide
*/
public class DeviceInfo {
private static final String VR_MODE_BOOT = "ro.boot.vr";
/**
* Returns true if this device boots directly in VR mode.
*/
@UnsupportedAppUsage
public static boolean getVrBoot() {
return SystemProperties.getBoolean(VR_MODE_BOOT, false);
}
}