griffin2000
griffin2000

Reputation: 779

Does the package com.google.vr.sdk.controller actually exist?

The Daydream docs have a page for the controller package, com.google.vr.sdk.controller: https://developers.google.com/vr/android/reference/com/google/vr/sdk/controller/ControllerManager

But at SDK level 25 I can't find that package. Was it removed? Or is it only available at a later version?

Upvotes: 1

Views: 476

Answers (1)

Benjamin
Benjamin

Reputation: 7368

Add the following to your gradle files

allprojects {
    repositories {
        jcenter()
    }
}

dependencies {
    compile 'com.google.vr:sdk-base:1.80.0'
    compile 'com.google.vr:sdk-controller:1.80.0'
}

More informations here

Upvotes: 2

Related Questions