Skip to content

Commit 2f7b715

Browse files
bruh, fix SAF
1 parent 6c8d132 commit 2f7b715

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

QuestAppVersionSwitcher/FolderPermission.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public static void DeleteDirectoryContent(string dir)
276276

277277
public static bool NeedsSAF(string from, string to = "")
278278
{
279-
if (DoesDeviceNeedSAF()) return false;
279+
if (!DoesDeviceNeedSAF()) return false;
280280
return from.Contains("/Android/") || to.Contains("/Android/");
281281
}
282282

QuestAppVersionSwitcher/Properties/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.16.4" package="com.ComputerElite.questappversionswitcher" android:installLocation="preferExternal" android:versionCode="149">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.16.5" package="com.ComputerElite.questappversionswitcher" android:installLocation="preferExternal" android:versionCode="150">
33
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="32" />
44
<uses-permission android:name="oculus.permission.handtracking" />
55
<uses-permission android:name="com.oculus.permission.HAND_TRACKING" />

QuestAppVersionSwitcher/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
// Minor Version
2323
// Build Number
2424
// Revision
25-
[assembly: AssemblyVersion("1.16.4.0")]
26-
[assembly: AssemblyFileVersion("1.16.4.0")]
25+
[assembly: AssemblyVersion("1.16.5.0")]
26+
[assembly: AssemblyFileVersion("1.16.5.0")]

0 commit comments

Comments
 (0)