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")]