10-16-2020 11:21 PM
11-15-2020 11:31 AM
11-15-2020 12:06 PM
11-15-2020 10:48 PM
11-15-2020 10:51 PM
11-16-2020 08:20 AM
11-23-2020 10:23 PM
11-24-2020 03:10 AM
Gerard_Slee said:
Same issue here: Any news for @OculusSupport. Everything works as expected except loading of files from the sdcard.
This same problem was there when moving from Go to Quest, now from Quest to Quest2.
11-26-2020 12:53 AM
11-27-2020 02:14 AM
buid.gradle
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
apply plugin: 'com.android.library'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation(name: 'OVRPlugin', ext:'aar')
}
android {
compileSdkVersion 29
buildToolsVersion '29.0.2'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
minSdkVersion 23
targetSdkVersion 29
ndk {
abiFilters 'armeabi-v7a'
}
versionCode 1
versionName '0.1'
consumerProguardFiles 'proguard-unity.txt'
}
lintOptions {
abortOnError false
}
aaptOptions {
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
}
packagingOptions {
doNotStrip '*/armeabi-v7a/*.so'
}
}
12-07-2020 03:26 AM