Web | App/Android

오큘러스에 .apk 파일로 앱 설치 (Oculus Go)

며용 2020. 7. 20. 18:52

https://developer.oculus.com/documentation/native/android/mobile-device-setup/

 

Device Setup

This topic shows how to set up an Oculus Android device for running, debugging, and testing applications. The currently supported Oculus devices that run Android are Oculus Quest and Oculus Go. Note: To set up an Oculus Rift for development, see the Rift N

developer.oculus.com

오큘러스 홈페이지에 나와있는 이 순서대로 진행하면 된다!

 

 


Setting

1. 오큘러스 앱 다운로드
앱을 다운받고 vr headset을 연결해준다

여기에서 개발자 모드를 끄고 켤 수 있따

 

 

 

2. 단체 등록
https://dashboard.oculus.com/organizations/create/

 

Oculus 개발자 대시보드

 

dashboard.oculus.com

개발자 모드를 사용하기 위해서는 필수로 만들어줘야한다.



 



3. adb 다운로드
https://developer.oculus.com/downloads/package/oculus-adb-drivers/

 

Oculus ADB Drivers | Developer Center | Oculus

Oculus ADB Drivers 2.0 This download contains the drivers required to use ADB with Android-based Oculus devices. Version 2 adds support for MTP mode connections. For more information, review the ADB documentation. To install the driver, unzip the package a

developer.oculus.com

다운받은 후 .inf파일에 오른쪽 클릭 후 설치를 누르면 된다.
기본 설치는 /c/Users/USER_NAME/AppData/Local/Android/Sdk/platform-tools 밑에 있다.

 

 

4. .apk 파일 설치하기

 

- 명령어 인터프리터를 열어서 방금 다운한 파일이 있는 곳으로 이동한다

cd LOCATION

 

- 다운한 서비스 실행하기

adb start-server

 

- 디바이스 검색하기 (usb로 연결한 상태에서)

adb devices

하면 연결된 디바이스가 뜸

- apk 파일 오큘러스에 설치하기

adb install APK_LOCATION

내 컴퓨터에 있는 apk 위치를 입력해서 다운로드 받아준다
이렇게 다운로드를 받으면 오큘러스 라이브러리에 알 수 없는 폴더로 어플이 다운로드 되어있다.



- 파일 삭제하기

adb uninstall PACKAGE_NAME