From 3c2a97530ad56e52b67d70275d53fb50840e996e Mon Sep 17 00:00:00 2001 From: ComputerElite <71177995+ComputerElite@users.noreply.github.com> Date: Wed, 21 Feb 2024 18:05:38 +0100 Subject: [PATCH] Actually add requested features --- QuestAppVersionSwitcher/PatchingManager.cs | 1 + QuestAppVersionSwitcher/Properties/AndroidManifest.xml | 2 +- QuestAppVersionSwitcher/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/QuestAppVersionSwitcher/PatchingManager.cs b/QuestAppVersionSwitcher/PatchingManager.cs index 042f71f..78e15fc 100644 --- a/QuestAppVersionSwitcher/PatchingManager.cs +++ b/QuestAppVersionSwitcher/PatchingManager.cs @@ -474,6 +474,7 @@ public static bool PatchManifest(ApkZip apkArchive) List addingPermissions = new List(); List addingFeatures = new List(); PatchingPermissions permissions = CoreService.coreVars.patchingPermissions; + addingFeatures.AddRange(permissions.otherFeatures); if (permissions.externalStorage) { // Technically, we only need READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE, but we also add MANAGE_EXTERNAL_STORAGE as this is what Android 11 needs instead diff --git a/QuestAppVersionSwitcher/Properties/AndroidManifest.xml b/QuestAppVersionSwitcher/Properties/AndroidManifest.xml index 88381fb..412752b 100644 --- a/QuestAppVersionSwitcher/Properties/AndroidManifest.xml +++ b/QuestAppVersionSwitcher/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs b/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs index f1680ff..4af51ee 100644 --- a/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs +++ b/QuestAppVersionSwitcher/Properties/AssemblyInfo.cs @@ -22,5 +22,5 @@ // Minor Version // Build Number // Revision -[assembly: AssemblyVersion("1.15.13.0")] -[assembly: AssemblyFileVersion("1.15.13.0")] +[assembly: AssemblyVersion("1.15.14.0")] +[assembly: AssemblyFileVersion("1.15.14.0")]