This site has been archived and remains strictly as a historical reference for developers who actively maintain apps built using the legacy Google VR SDK, which was last updated in 2019 and is no longer receiving updates.
  • All developers actively developing experiences for Google Cardboard should use the new open source Cardboard SDKs for iOS, Android NDK, and Unity XR Plugin. These new SDKs offer streamlined APIs, improved device compatibility, and built-in viewer profile QR code scanning.
  • The Daydream View VR headset is no longer available for purchase as of October 15, 2019. Existing apps on supported devices are unaffected for users who previously installed those applications. It is no longer possible to opt-in to Daydream distribution via Google Play.

GvrIntent

Provides information about the Android Intent that started the current Activity.

Summary

Public static functions

GetData()
string
Returns the string representation of the data URI on which this activity's intent is operating.
GetIntentHashCode()
int
Returns the hash code of the Java intent object.
IsLaunchedFromVr()
bool
Checks whether the intent category contains "android.intent.extra.VR_LAUNCH".

Public static functions

GetData

string GetData()

Returns the string representation of the data URI on which this activity's intent is operating.

See Intent.getDataString() in the Android documentation.

Details
Returns
The string representation of the data URI on which this activity's intent is operating.

GetIntentHashCode

int GetIntentHashCode()

Returns the hash code of the Java intent object.

Useful for discerning whether you have a new intent on un-pause.

Details
Returns
The hash code of the Java intent object.

IsLaunchedFromVr

bool IsLaunchedFromVr()

Checks whether the intent category contains "android.intent.extra.VR_LAUNCH".

Details
Returns
Returns true if the intent category contains "android.intent.extra.VR_LAUNCH", false otherwise.