This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
@@ -0,0 +1,2 @@
#Sat Jan 04 20:19:32 EST 2025
gradle.version=8.9
@@ -0,0 +1 @@
4B02BFF7875F9C4E4FD9E1837955E17C9FDACDDFE2250388AF40DD43A691F3A2
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.oculus.vrapi" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
<application android:allowBackup="true" android:label="VrApi">
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only" />
</application>
</manifest>
@@ -0,0 +1,3 @@
configurations.create('default')
artifacts.add('default', file('../../Libs/Android/VrApi-Loader.aar'))
@@ -0,0 +1,24 @@
LOCAL_PATH := $(call my-dir)
#--------------------------------------------------------␍
# libvrapi.a␍
#␍
# VrApi␍
#--------------------------------------------------------␍
include $(CLEAR_VARS)
LOCAL_MODULE := vrapi␍
ifeq ($(USE_INTERNAL_VRAPI_IMPL),1)
LOCAL_SRC_FILES := ../../../Libs/Android/$(TARGET_ARCH_ABI)/lib$(LOCAL_MODULE)impl.so␍
else
LOCAL_SRC_FILES := ../../../Libs/Android/$(TARGET_ARCH_ABI)/lib$(LOCAL_MODULE).so␍
endif
# only export public headers␍
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../../../Include␍
ifneq (,$(wildcard $(LOCAL_PATH)/$(LOCAL_SRC_FILES)))
include $(PREBUILT_SHARED_LIBRARY)
endif