KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
minimal-android-vr
★ 8
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
Hackintosh-CLEVO-H
:
神舟战神炫龙蓝天 8/9 代全系机型(标压) macOS 10.15 Catalina EFI NH5xRD_RC_RA_RH(Q)/NH70RD_RC_RA_RH(Q)
help-me-read
:
No description available.
datax-runner
:
Go lib for running alibaba datax
nest-api-example
:
A Nestjs example API using TypeORM with SQLite.
NLP2SQL
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
minimal-android-vr
?
Download (.md)
Minimal Android VR === A tiny test app for running C code on an Oculus Android VR device. Used for doing quick experiments or generating minimal test cases for bug reports. It doesn't use gradle or Android Studio, instead it is built with command line tools and tup is used to automate some things. Not guaranteed to be fit for any purpose at all, this is just for personal use. Usage --- ### Requirements - Oculus Mobile SDK - Android SDK and NDK (I don't know which versions will work) - tup ### Setup - Edit tup.config to set up various paths and versions (this is the hard part) - Create a keystore (see tup.config) - Run `tup init` in the root ### Building Run `tup` ### Deploying tup outputs an `app.apk` file. You can use `adb install app.apk` to install it to the device. I usually run the following command to build, install, and tail logs in one step: ```sh tup && adb install -r app.apk && adb logcat -s APP ```