Skip to content

Commit

Permalink
Actually add requested features
Browse files Browse the repository at this point in the history
  • Loading branch information
ComputerElite committed Feb 21, 2024
1 parent f721e71 commit 3c2a975
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions QuestAppVersionSwitcher/PatchingManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,7 @@ public static bool PatchManifest(ApkZip apkArchive)
List<string> addingPermissions = new List<string>();
List<UsesFeature> addingFeatures = new List<UsesFeature>();
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
Expand Down
2 changes: 1 addition & 1 deletion QuestAppVersionSwitcher/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.15.13" package="com.ComputerElite.questappversionswitcher" android:installLocation="preferExternal" android:versionCode="134">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.15.14" package="com.ComputerElite.questappversionswitcher" android:installLocation="preferExternal" android:versionCode="135">
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="32" />
<uses-permission android:name="oculus.permission.handtracking" />
<uses-permission android:name="com.oculus.permission.HAND_TRACKING" />
Expand Down
4 changes: 2 additions & 2 deletions QuestAppVersionSwitcher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 3c2a975

Please sign in to comment.