Compare commits

...

35 Commits

Author SHA1 Message Date
Harry Fn Potter
5b5ce78471 changelog hf5 with sig 2021-06-30 23:31:46 -04:00
Harry Fn Potter
c96a98b38a Merge branch 'master' of https://github.com/nerdunit/androidsideloader 2021-06-30 23:29:16 -04:00
Harry Fn Potter
b0bb41732d ADB path fix once and for all. 2021-06-30 23:29:04 -04:00
harryeffinpotter
c6ef62c6ca 2.1HF4 2021-06-29 06:37:48 -04:00
Harry Fn Potter
0b04783962 Changelog update. 2021-06-29 06:33:21 -04:00
Harry Fn Potter
5fab216798 Updated version # in updater. 2021-06-29 06:28:08 -04:00
Harry Fn Potter
a37c843a99 Update RSL2.1HF4 - RSL now copies ADB files to AppData\Roaming\RSL\Version\ADB 2021-06-29 06:24:46 -04:00
harryeffinpotter
222edcd6a8 2.1 hf3 2021-06-20 17:49:13 -04:00
harryeffinpotter
130140727b testing something 2021-06-20 17:47:00 -04:00
harryeffinpotter
5ec2f260fc hf3 2021-06-20 17:41:37 -04:00
Harry Fn Potter
a7ad7c0a83 Fixed install.txt AGAIN. The spaghetti code is spaghetti code. 2021-06-20 17:31:15 -04:00
Harry Fn Potter
bd511d28a8 FINALLY back to normal. JFC. 2021-06-20 12:29:26 -04:00
Harry Fn Potter
75a75bd627 Missing bracket in mainform. 2021-06-19 23:05:09 -04:00
Harry Fn Potter
0bc0f6668a fixed obb install.txt. Fixed adb errors. Should be all good meow. Also fixed wireless causing program freeze if IP changed. 2021-06-19 23:03:18 -04:00
Harry Fn Potter
f72c6b8d95 updater 2021-06-19 20:03:50 -04:00
Harry Fn Potter
3952931831 Merge fixes 2021-06-19 20:02:39 -04:00
Harry Fn Potter
9346b75916 Fixes 2021-06-19 20:01:12 -04:00
Harry Fn Potter
b9e98894e9 Fixed all issues. 2021-06-19 20:00:18 -04:00
Harry Fn Potter
c2b4fb499c Merge branch 'master' of https://github.com/nerdunit/androidsideloader 2021-06-19 04:09:08 -04:00
Harry Fn Potter
e040e36564 Install.txt was using cmd exe , made it use adb exe and added another function for cmd only purposes for 7zip extracts during install.txt 2021-06-19 04:08:56 -04:00
harryeffinpotter
459a496bbb 2.1.2HF 2021-06-17 04:24:54 -04:00
harryeffinpotter
e8fcae997b 2.2 2021-06-17 04:22:20 -04:00
Harry Fn Potter
9912af4acc Updater revert 2021-06-17 04:17:37 -04:00
harryeffinpotter
f243853fca HF 2021-06-17 04:14:52 -04:00
harryeffinpotter
fc98d61304 removed v 2021-06-17 04:12:14 -04:00
Harry Fn Potter
d38af14ed4 Merge branch 'master' of https://github.com/nerdunit/androidsideloader 2021-06-17 04:09:49 -04:00
Harry Fn Potter
17165c35a9 changelog 2021-06-17 04:09:42 -04:00
harryeffinpotter
5e30e3a22c 2.1.2 2021-06-17 04:08:28 -04:00
Harry Fn Potter
bba48c5dc5 ADB Debugging warning reimplemented. Unauthorized code section was not proccing response. 2021-06-17 04:01:15 -04:00
Harry Fn Potter
5d75edaf63 Anchor points + max/min window size for Quest options. 2021-06-16 05:58:29 -04:00
Harry Fn Potter
62d9187cfa Merge branch 'master' of https://github.com/nerdunit/androidsideloader 2021-06-16 05:38:11 -04:00
Harry Fn Potter
cf1dda5e5b 2.1.2 - in progress, still testing,
= Fixed apk drag and drop when install.txt present, apk now installs prior to following install.txt commands.
= Changed OBB procedure for drag and drop to check for com. in directory name prior to running copyObb command.
= Fixed freeze caused by having Wireless ADB enabled but device idle or rebooted.
2021-06-16 05:38:01 -04:00
harryeffinpotter
a5f6590019 v2.1.1
2.1.1
2021-06-01 12:34:02 -04:00
Harry Fn Potter
b7cd6c1cb4 Merge branch 'master' of https://github.com/nerdunit/androidsideloader 2021-06-01 12:32:04 -04:00
Harry Fn Potter
452e733b3a changed version name to 2.1.1 2021-06-01 12:31:45 -04:00
15 changed files with 1103 additions and 287 deletions

View File

@@ -2,5 +2,6 @@
"ExpandedNodes": [
""
],
"SelectedNode": "\\AndroidSideloader.sln",
"PreviewInSolutionExplorer": false
}

Binary file not shown.

168
ADB.cs
View File

@@ -12,17 +12,18 @@ namespace AndroidSideloader
class ADB
{
static Process adb = new Process();
public static string adbFolderPath = Environment.CurrentDirectory + "\\adb";
public static string adbFolderPath = "C:\\RSL\\2.14HF5\\ADB";
public static string adbFilePath = adbFolderPath + "\\adb.exe";
public static string DeviceID = "";
public static string package = "";
public static ProcessOutput RunAdbCommandToString(string command)
{
Properties.Settings.Default.ADBPath = adbFilePath;
Properties.Settings.Default.Save();
if (DeviceID.Length > 1)
command = $" -s {DeviceID} {command}";
Logger.Log($"Running command {command}");
adb.StartInfo.FileName = adbFilePath;
adb.StartInfo.FileName = @adbFilePath;
adb.StartInfo.Arguments = command;
adb.StartInfo.RedirectStandardError = true;
adb.StartInfo.RedirectStandardInput = true;
@@ -30,7 +31,6 @@ namespace AndroidSideloader
adb.StartInfo.CreateNoWindow = true;
adb.StartInfo.UseShellExecute = false;
adb.StartInfo.WorkingDirectory = adbFolderPath;
adb.Start();
adb.StandardInput.WriteLine(command);
adb.StandardInput.Flush();
@@ -40,12 +40,20 @@ namespace AndroidSideloader
string error = "";
try
{
{
output = adb.StandardOutput.ReadToEnd();
error = adb.StandardError.ReadToEnd();
}
catch { }
if (command.Contains("connect"))
{
bool graceful = adb.WaitForExit(3000); //Wait 3 secs.
if (!graceful)
{
adb.Kill();
}
}
else
adb.WaitForExit();
Logger.Log(output);
Logger.Log(error);
@@ -53,8 +61,13 @@ namespace AndroidSideloader
}
public static ProcessOutput RunAdbCommandToStringWOADB(string result, string path)
{
string command = result;
Properties.Settings.Default.ADBPath = adbFilePath;
Properties.Settings.Default.Save();
;
Logger.Log($"Running command {command}");
adb.StartInfo.FileName = "cmd.exe";
adb.StartInfo.RedirectStandardError = true;
@@ -74,19 +87,75 @@ namespace AndroidSideloader
try
{
output += adb.StandardOutput.ReadToEnd();
error += adb.StandardError.ReadToEnd();
output += adb.StandardOutput.ReadToEnd();
error += adb.StandardError.ReadToEnd();
}
catch { }
if (command.Contains("connect"))
{
bool graceful = adb.WaitForExit(3000);
if (!graceful)
{
adb.Kill();
}
}
else
adb.WaitForExit();
if (error.Contains("ADB_VENDOR_KEYS"))
MessageBox.Show("Please check inside your headset for ADB DEBUGGING prompt, check box to \"Always allow from this computer.\" and hit OK.");
Logger.Log(output);
Logger.Log(error);
return new ProcessOutput(output, error);
}
adb.WaitForExit();
public static ProcessOutput RunCommandToString(string result, string path)
{
string command = result;
Logger.Log($"Running command {command}");
adb.StartInfo.FileName = @"C:\windows\system32\cmd.exe";
adb.StartInfo.Arguments = command;
adb.StartInfo.RedirectStandardError = true;
adb.StartInfo.RedirectStandardInput = true;
adb.StartInfo.RedirectStandardOutput = true;
adb.StartInfo.CreateNoWindow = true;
adb.StartInfo.UseShellExecute = false;
adb.StartInfo.WorkingDirectory = Path.GetDirectoryName(path);
adb.Start();
adb.StandardInput.WriteLine(command);
adb.StandardInput.Flush();
adb.StandardInput.Close();
string output = "";
string error = "";
try
{
output += adb.StandardOutput.ReadToEnd();
error += adb.StandardError.ReadToEnd();
}
catch { }
if (command.Contains("connect"))
{
bool graceful = adb.WaitForExit(3000);
if (!graceful)
{
adb.Kill();
}
}
else
adb.WaitForExit();
if (error.Contains("ADB_VENDOR_KEYS"))
MessageBox.Show("Please check inside your headset for ADB DEBUGGING prompt, check box to \"Always allow from this computer.\" and hit OK.");
Logger.Log(output);
Logger.Log(error);
return new ProcessOutput(output, error);
}
public static ProcessOutput UninstallPackage(string package)
public static ProcessOutput UninstallPackage(string package)
{
WakeDevice();
ProcessOutput output = new ProcessOutput("", "");
@@ -142,18 +211,30 @@ namespace AndroidSideloader
public static void WakeDevice()
{
if (!string.IsNullOrEmpty(Properties.Settings.Default.IPAddress))
if (Properties.Settings.Default.IPAddress.Contains("connect"))
{
ADB.RunAdbCommandToString(Properties.Settings.Default.IPAddress);
RunAdbCommandToString(Properties.Settings.Default.IPAddress);
string response = ADB.RunAdbCommandToString(Properties.Settings.Default.IPAddress).Output;
if (response.Contains("refused"))
RunAdbCommandToString("shell input keyevent KEYCODE_WAKEUP");
if (response.Contains("cannot"))
{
DialogResult dialogResult = MessageBox.Show("It seems you have rebooted your Quest, Rookie's wireless ADB will persist past PC reboot, but not for Quest reboot.\n\nHave you assigned your Quest a static IP in your router configuration? If you no longer want to use Wireless ADB just hit cancel!", "DEVICE WAS REBOOTED", MessageBoxButtons.YesNoCancel);
DialogResult dialogResult = MessageBox.Show("Either your Quest is idle or you have rebooted the device.\nRSL's wireless ADB will persist on PC reboot but not on Quest reboot.\n\nNOTE: If you haven't rebooted your Quest it may be idle.\n\nTo prevent this press the HOLD button 2x prior to launching RSL. Or\nkeep your Quest plugged into power to keep it permanently \"awake\".\n\nHave you assigned your Quest a static IP in your router configuration?\n\nIf you no longer want to use Wireless ADB or your device was idle please hit CANCEL.", "DEVICE REBOOTED\\IDLE?", MessageBoxButtons.YesNoCancel);
if (dialogResult == DialogResult.Cancel)
return;
if (dialogResult == DialogResult.Yes)
{
ADB.WakeDevice();
DialogResult dialogResult2 = MessageBox.Show("Press OK to remove your stored IP address.\nIf your Quest went idle press the HOLD button on the device twice then press CANCEL to reconnect.", "REMOVE STORED IP?", MessageBoxButtons.OKCancel);
if (dialogResult2 == DialogResult.Cancel)
ADB.WakeDevice();
if (dialogResult2 == DialogResult.OK)
{
Properties.Settings.Default.IPAddress = "";
Properties.Settings.Default.Save();
ADB.WakeDevice();
}
}
else if (dialogResult == DialogResult.Yes)
{
MessageBox.Show("Connect your Quest to USB so we can reconnect to your saved IP address!");
ADB.RunAdbCommandToString("devices");
Thread.Sleep(250);
@@ -165,9 +246,8 @@ namespace AndroidSideloader
Thread.Sleep(500);
ADB.RunAdbCommandToString(Properties.Settings.Default.IPAddress);
}
if (dialogResult == DialogResult.No)
else if (dialogResult == DialogResult.No)
{
ADB.WakeDevice();
MessageBox.Show("You must repeat the entire connection process, press OK to begin.", "Reconfigure Wireless ADB", MessageBoxButtons.OK);
ADB.RunAdbCommandToString("devices");
ADB.RunAdbCommandToString("tcpip 5555");
@@ -180,7 +260,6 @@ namespace AndroidSideloader
strArrayOne = input.Split(' ');
if (strArrayOne[0].Length > 7)
{
ADB.WakeDevice();
string IPaddr = strArrayOne[8];
string IPcmnd = "connect " + IPaddr + ":5555";
MessageBox.Show($"Your Quest's local IP address is: {IPaddr}\n\nPlease disconnect your Quest then wait 2 seconds.\nOnce it is disconnected hit OK", "", MessageBoxButtons.OK);
@@ -192,16 +271,13 @@ namespace AndroidSideloader
MessageBox.Show($"Connected!!", "", MessageBoxButtons.OK);
Program.form.ChangeTitlebarToDevice();
}
else
{
MessageBox.Show("No device connected!");
}
}
}
}
RunAdbCommandToString("shell input keyevent KEYCODE_WAKEUP");
}
public static ProcessOutput Sideload(string path, string packagename = "")
{
@@ -209,6 +285,7 @@ namespace AndroidSideloader
WakeDevice();
ProcessOutput ret = new ProcessOutput();
package = packagename;
Program.form.ChangeTitle($"Sideloading {path}");
ret += RunAdbCommandToString($"install -g -r \"{path}\"");
@@ -228,7 +305,7 @@ namespace AndroidSideloader
ret.Output = string.Empty;
MessageBox.Show($"In-place upgrade for {packagename} failed. We will need to upgrade by uninstalling, and keeping savedata isn't guaranteed. Continue?", "UPGRADE FAILED!", MessageBoxButtons.OKCancel);
MessageBox.Show($"In place upgrade for {packagename} failed. We will need to upgrade by uninstalling, and keeping savedata isn't guaranteed. Continue?", "UPGRADE FAILED!", MessageBoxButtons.OKCancel);
string date_str = DateTime.Today.ToString("yyyy.MM.dd");
string CurrBackups = Path.Combine(BackupFolder, date_str);
@@ -237,11 +314,9 @@ namespace AndroidSideloader
MessageBox.Show($"Searching for save files...", "Searching!", MessageBoxButtons.OK);
if (Directory.Exists($"/sdcard/Android/data/{packagename}"))
{
MessageBox.Show($"Trying to backup save to Documents\\Rookie Backups\\{date_str}(year.month.date)\\{packagename}\\data", "Save files found", MessageBoxButtons.OK);
MessageBox.Show($"Trying to backup save to Documents\\Rookie Backups\\{date_str}(YYYY.MM.DD)\\{packagename}", "Save files found", MessageBoxButtons.OK);
Directory.CreateDirectory(CurrBackups);
String CurrbackupPaths = CurrBackups + "\\" + packagename + "\\data";
Directory.CreateDirectory(CurrbackupPaths);
ADB.RunAdbCommandToString($"pull \"/sdcard/Android/data/{packagename} \" \"{CurrbackupPaths}\"");
ADB.RunAdbCommandToString($"pull \"/sdcard/Android/data/{packagename}\" \"{CurrBackups}\"");
}
else
{
@@ -252,7 +327,7 @@ namespace AndroidSideloader
}
}
ADB.WakeDevice();
ret += ADB.RunAdbCommandToString("shell pm uninstall " + packagename);
ret += ADB.RunAdbCommandToString("shell pm uninstall " + package);
ret += RunAdbCommandToString($"install -g -r \"{path}\"");
return ret;
}
@@ -260,15 +335,13 @@ namespace AndroidSideloader
}
if (File.Exists($"{Properties.Settings.Default.MainDir}\\Config.Json"))
{
if (packagename.Contains("com.*") || Properties.Settings.Default.CurrPckg.Contains("com"))
{
if (Properties.Settings.Default.CurrPckg.Contains("com"))
packagename = Properties.Settings.Default.CurrPckg;
Program.form.ChangeTitle("Pushing Custom QU s3 Patch JSON.");
if (!Directory.Exists($"/sdcard/android/data/{packagename}"))
RunAdbCommandToString($"shell mkdir /sdcard/android/data/{packagename}");
if (!Directory.Exists($"/sdcard/android/data/{packagename}/private"))
RunAdbCommandToString($"shell mkdir /sdcard/android/data/{packagename}/private");
if (!Directory.Exists($"/sdcard/android/data/{package}"))
RunAdbCommandToString($"shell mkdir /sdcard/android/data/{package}");
if (!Directory.Exists($"/sdcard/android/data/{package}/private"))
RunAdbCommandToString($"shell mkdir /sdcard/android/data/{package}/private");
Random r = new Random();
int x = r.Next(999999999);
@@ -287,15 +360,8 @@ namespace AndroidSideloader
File.WriteAllText("config.json", boff);
string blank = "";
File.WriteAllText("delete_settings", blank);
ret += ADB.RunAdbCommandToString($"push \"{Environment.CurrentDirectory}\\delete_settings\" /sdcard/android/data/{packagename}/private/delete_settings");
ret += ADB.RunAdbCommandToString($"push \"{Environment.CurrentDirectory}\\config.json\" /sdcard/android/data/{packagename}/private/config.json");
}
else
ret.Output += "QU Settings could not be automatically applied.\nPlease restart Rookie to refresh installed apps.\nThen select the app from the installed apps (Dropdown list above Device ID).\nThen click Install QU Setting";
ret += ADB.RunAdbCommandToString($"push \"{Environment.CurrentDirectory}\\delete_settings\" /sdcard/android/data/{package}/private/delete_settings");
ret += ADB.RunAdbCommandToString($"push \"{Environment.CurrentDirectory}\\config.json\" /sdcard/android/data/{package}/private/config.json");
}
Program.form.ChangeTitle("Sideload done");

View File

@@ -27,7 +27,7 @@
<value>True</value>
</setting>
<setting name="userJsonOnGameInstall" serializeAs="String">
<value>True</value>
<value>False</value>
</setting>
<setting name="CallUpgrade" serializeAs="String">
<value>True</value>

289
MainForm.Designer.cs generated
View File

@@ -95,10 +95,9 @@
this.m_combo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.m_combo.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.m_combo.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.m_combo.Location = new System.Drawing.Point(303, 10);
this.m_combo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.m_combo.Location = new System.Drawing.Point(227, 8);
this.m_combo.Name = "m_combo";
this.m_combo.Size = new System.Drawing.Size(992, 28);
this.m_combo.Size = new System.Drawing.Size(745, 24);
this.m_combo.TabIndex = 0;
this.m_combo.Text = "Select an app to uninstall...";
//
@@ -113,11 +112,10 @@
this.startsideloadbutton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.startsideloadbutton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.startsideloadbutton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.startsideloadbutton.Location = new System.Drawing.Point(0, 170);
this.startsideloadbutton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.startsideloadbutton.Location = new System.Drawing.Point(0, 140);
this.startsideloadbutton.Name = "startsideloadbutton";
this.startsideloadbutton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.startsideloadbutton.Size = new System.Drawing.Size(291, 34);
this.startsideloadbutton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.startsideloadbutton.Size = new System.Drawing.Size(218, 28);
this.startsideloadbutton.TabIndex = 5;
this.startsideloadbutton.Text = "Sideload APK";
this.startsideloadbutton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -137,9 +135,8 @@
this.devicesbutton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.devicesbutton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.devicesbutton.Location = new System.Drawing.Point(0, 0);
this.devicesbutton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.devicesbutton.Name = "devicesbutton";
this.devicesbutton.Size = new System.Drawing.Size(291, 34);
this.devicesbutton.Size = new System.Drawing.Size(218, 28);
this.devicesbutton.TabIndex = 0;
this.devicesbutton.Text = "RECONNECT DEVICE";
this.devicesbutton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -158,10 +155,9 @@
this.obbcopybutton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.obbcopybutton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.obbcopybutton.Location = new System.Drawing.Point(0, 0);
this.obbcopybutton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.obbcopybutton.Name = "obbcopybutton";
this.obbcopybutton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.obbcopybutton.Size = new System.Drawing.Size(291, 34);
this.obbcopybutton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.obbcopybutton.Size = new System.Drawing.Size(218, 28);
this.obbcopybutton.TabIndex = 0;
this.obbcopybutton.Text = "Copy OBB";
this.obbcopybutton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -179,11 +175,10 @@
this.backupbutton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.backupbutton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.backupbutton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.backupbutton.Location = new System.Drawing.Point(0, 34);
this.backupbutton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.backupbutton.Location = new System.Drawing.Point(0, 28);
this.backupbutton.Name = "backupbutton";
this.backupbutton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.backupbutton.Size = new System.Drawing.Size(291, 34);
this.backupbutton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.backupbutton.Size = new System.Drawing.Size(218, 28);
this.backupbutton.TabIndex = 1;
this.backupbutton.Text = "Backup Gamedata";
this.backupbutton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -202,10 +197,9 @@
this.restorebutton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.restorebutton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.restorebutton.Location = new System.Drawing.Point(0, 0);
this.restorebutton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.restorebutton.Name = "restorebutton";
this.restorebutton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.restorebutton.Size = new System.Drawing.Size(291, 34);
this.restorebutton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.restorebutton.Size = new System.Drawing.Size(218, 28);
this.restorebutton.TabIndex = 0;
this.restorebutton.Text = "Restore Gamedata";
this.restorebutton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -223,11 +217,10 @@
this.getApkButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.getApkButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.getApkButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.getApkButton.Location = new System.Drawing.Point(0, 68);
this.getApkButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.getApkButton.Location = new System.Drawing.Point(0, 56);
this.getApkButton.Name = "getApkButton";
this.getApkButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.getApkButton.Size = new System.Drawing.Size(291, 34);
this.getApkButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.getApkButton.Size = new System.Drawing.Size(218, 28);
this.getApkButton.TabIndex = 2;
this.getApkButton.Text = "Extract Apk from device";
this.getApkButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -245,11 +238,10 @@
this.uninstallAppButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.uninstallAppButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.uninstallAppButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.uninstallAppButton.Location = new System.Drawing.Point(0, 102);
this.uninstallAppButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uninstallAppButton.Location = new System.Drawing.Point(0, 84);
this.uninstallAppButton.Name = "uninstallAppButton";
this.uninstallAppButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.uninstallAppButton.Size = new System.Drawing.Size(291, 34);
this.uninstallAppButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.uninstallAppButton.Size = new System.Drawing.Size(218, 28);
this.uninstallAppButton.TabIndex = 3;
this.uninstallAppButton.Text = "Uninstall Selected App";
this.uninstallAppButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -267,11 +259,10 @@
this.sideloadFolderButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.sideloadFolderButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.sideloadFolderButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.sideloadFolderButton.Location = new System.Drawing.Point(0, 136);
this.sideloadFolderButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.sideloadFolderButton.Location = new System.Drawing.Point(0, 112);
this.sideloadFolderButton.Name = "sideloadFolderButton";
this.sideloadFolderButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.sideloadFolderButton.Size = new System.Drawing.Size(291, 34);
this.sideloadFolderButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.sideloadFolderButton.Size = new System.Drawing.Size(218, 28);
this.sideloadFolderButton.TabIndex = 4;
this.sideloadFolderButton.Text = "Sideload Folder (recursive)";
this.sideloadFolderButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -284,10 +275,9 @@
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.progressBar.ForeColor = System.Drawing.Color.Purple;
this.progressBar.Location = new System.Drawing.Point(304, 615);
this.progressBar.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.progressBar.Location = new System.Drawing.Point(228, 500);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(489, 31);
this.progressBar.Size = new System.Drawing.Size(367, 25);
this.progressBar.TabIndex = 7;
//
// copyBulkObbButton
@@ -301,11 +291,10 @@
this.copyBulkObbButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.copyBulkObbButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.copyBulkObbButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.copyBulkObbButton.Location = new System.Drawing.Point(0, 34);
this.copyBulkObbButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.copyBulkObbButton.Location = new System.Drawing.Point(0, 28);
this.copyBulkObbButton.Name = "copyBulkObbButton";
this.copyBulkObbButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.copyBulkObbButton.Size = new System.Drawing.Size(291, 34);
this.copyBulkObbButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.copyBulkObbButton.Size = new System.Drawing.Size(218, 28);
this.copyBulkObbButton.TabIndex = 1;
this.copyBulkObbButton.Text = "Recursive Copy OBB";
this.copyBulkObbButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -323,10 +312,9 @@
this.downloadInstallGameButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.downloadInstallGameButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.downloadInstallGameButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.downloadInstallGameButton.Location = new System.Drawing.Point(801, 613);
this.downloadInstallGameButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.downloadInstallGameButton.Location = new System.Drawing.Point(601, 498);
this.downloadInstallGameButton.Name = "downloadInstallGameButton";
this.downloadInstallGameButton.Size = new System.Drawing.Size(495, 37);
this.downloadInstallGameButton.Size = new System.Drawing.Size(371, 30);
this.downloadInstallGameButton.TabIndex = 8;
this.downloadInstallGameButton.Text = "Download and Install Game/Add to Queue";
this.downloadInstallGameButton.UseVisualStyleBackColor = false;
@@ -353,9 +341,9 @@
this.panel1.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::AndroidSideloader.Properties.Settings.Default, "ButtonColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(291, 954);
this.panel1.Size = new System.Drawing.Size(218, 775);
this.panel1.TabIndex = 73;
//
// downloadingLabel
@@ -364,10 +352,9 @@
this.downloadingLabel.BackColor = System.Drawing.SystemColors.WindowText;
this.downloadingLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F);
this.downloadingLabel.ForeColor = System.Drawing.SystemColors.Control;
this.downloadingLabel.Location = new System.Drawing.Point(16, 879);
this.downloadingLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.downloadingLabel.Location = new System.Drawing.Point(12, 714);
this.downloadingLabel.Name = "downloadingLabel";
this.downloadingLabel.Size = new System.Drawing.Size(126, 24);
this.downloadingLabel.Size = new System.Drawing.Size(98, 18);
this.downloadingLabel.TabIndex = 83;
this.downloadingLabel.Text = "Downloading:";
//
@@ -377,10 +364,9 @@
this.StorageLabel.BackColor = System.Drawing.SystemColors.WindowText;
this.StorageLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F);
this.StorageLabel.ForeColor = System.Drawing.SystemColors.Control;
this.StorageLabel.Location = new System.Drawing.Point(16, 783);
this.StorageLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.StorageLabel.Location = new System.Drawing.Point(12, 636);
this.StorageLabel.Name = "StorageLabel";
this.StorageLabel.Size = new System.Drawing.Size(140, 24);
this.StorageLabel.Size = new System.Drawing.Size(111, 18);
this.StorageLabel.TabIndex = 83;
this.StorageLabel.Text = "Device storage:";
//
@@ -396,10 +382,9 @@
this.aboutBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.aboutBtn.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.aboutBtn.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.aboutBtn.Location = new System.Drawing.Point(0, 732);
this.aboutBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.aboutBtn.Location = new System.Drawing.Point(0, 596);
this.aboutBtn.Name = "aboutBtn";
this.aboutBtn.Size = new System.Drawing.Size(291, 34);
this.aboutBtn.Size = new System.Drawing.Size(218, 28);
this.aboutBtn.TabIndex = 5;
this.aboutBtn.Text = "ABOUT";
this.aboutBtn.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -418,10 +403,9 @@
this.settingsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.settingsButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.settingsButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.settingsButton.Location = new System.Drawing.Point(0, 698);
this.settingsButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.settingsButton.Location = new System.Drawing.Point(0, 568);
this.settingsButton.Name = "settingsButton";
this.settingsButton.Size = new System.Drawing.Size(291, 34);
this.settingsButton.Size = new System.Drawing.Size(218, 28);
this.settingsButton.TabIndex = 4;
this.settingsButton.Text = "SETTINGS";
this.settingsButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -439,10 +423,10 @@
this.otherContainer.Controls.Add(this.ADBWirelessEnable);
this.otherContainer.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::AndroidSideloader.Properties.Settings.Default, "SubButtonColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.otherContainer.Dock = System.Windows.Forms.DockStyle.Top;
this.otherContainer.Location = new System.Drawing.Point(0, 492);
this.otherContainer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.otherContainer.Location = new System.Drawing.Point(0, 401);
this.otherContainer.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.otherContainer.Name = "otherContainer";
this.otherContainer.Size = new System.Drawing.Size(291, 206);
this.otherContainer.Size = new System.Drawing.Size(218, 167);
this.otherContainer.TabIndex = 80;
//
// InstallQUset
@@ -456,11 +440,10 @@
this.InstallQUset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.InstallQUset.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.InstallQUset.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.InstallQUset.Location = new System.Drawing.Point(0, 170);
this.InstallQUset.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.InstallQUset.Location = new System.Drawing.Point(0, 140);
this.InstallQUset.Name = "InstallQUset";
this.InstallQUset.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.InstallQUset.Size = new System.Drawing.Size(291, 34);
this.InstallQUset.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.InstallQUset.Size = new System.Drawing.Size(218, 28);
this.InstallQUset.TabIndex = 5;
this.InstallQUset.Text = "Install QU Setting";
this.InstallQUset.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -478,11 +461,10 @@
this.removeQUSetting.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.removeQUSetting.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.removeQUSetting.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.removeQUSetting.Location = new System.Drawing.Point(0, 136);
this.removeQUSetting.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.removeQUSetting.Location = new System.Drawing.Point(0, 112);
this.removeQUSetting.Name = "removeQUSetting";
this.removeQUSetting.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.removeQUSetting.Size = new System.Drawing.Size(291, 34);
this.removeQUSetting.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.removeQUSetting.Size = new System.Drawing.Size(218, 28);
this.removeQUSetting.TabIndex = 4;
this.removeQUSetting.Text = "Remove QU Setting";
this.removeQUSetting.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -500,11 +482,10 @@
this.ThemeChangerButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.ThemeChangerButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.ThemeChangerButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.ThemeChangerButton.Location = new System.Drawing.Point(0, 102);
this.ThemeChangerButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ThemeChangerButton.Location = new System.Drawing.Point(0, 84);
this.ThemeChangerButton.Name = "ThemeChangerButton";
this.ThemeChangerButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.ThemeChangerButton.Size = new System.Drawing.Size(291, 34);
this.ThemeChangerButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.ThemeChangerButton.Size = new System.Drawing.Size(218, 28);
this.ThemeChangerButton.TabIndex = 3;
this.ThemeChangerButton.Text = "Theme Changer";
this.ThemeChangerButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -522,11 +503,10 @@
this.QuestOptionsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.QuestOptionsButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.QuestOptionsButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.QuestOptionsButton.Location = new System.Drawing.Point(0, 68);
this.QuestOptionsButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.QuestOptionsButton.Location = new System.Drawing.Point(0, 56);
this.QuestOptionsButton.Name = "QuestOptionsButton";
this.QuestOptionsButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.QuestOptionsButton.Size = new System.Drawing.Size(291, 34);
this.QuestOptionsButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.QuestOptionsButton.Size = new System.Drawing.Size(218, 28);
this.QuestOptionsButton.TabIndex = 2;
this.QuestOptionsButton.Text = "Quest Options";
this.QuestOptionsButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -544,11 +524,10 @@
this.ADBWirelessDisable.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.ADBWirelessDisable.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.ADBWirelessDisable.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.ADBWirelessDisable.Location = new System.Drawing.Point(0, 34);
this.ADBWirelessDisable.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ADBWirelessDisable.Location = new System.Drawing.Point(0, 28);
this.ADBWirelessDisable.Name = "ADBWirelessDisable";
this.ADBWirelessDisable.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.ADBWirelessDisable.Size = new System.Drawing.Size(291, 34);
this.ADBWirelessDisable.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.ADBWirelessDisable.Size = new System.Drawing.Size(218, 28);
this.ADBWirelessDisable.TabIndex = 1;
this.ADBWirelessDisable.Text = "Disable WIreless ADB";
this.ADBWirelessDisable.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -567,10 +546,9 @@
this.ADBWirelessEnable.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.ADBWirelessEnable.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.ADBWirelessEnable.Location = new System.Drawing.Point(0, 0);
this.ADBWirelessEnable.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ADBWirelessEnable.Name = "ADBWirelessEnable";
this.ADBWirelessEnable.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.ADBWirelessEnable.Size = new System.Drawing.Size(291, 34);
this.ADBWirelessEnable.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.ADBWirelessEnable.Size = new System.Drawing.Size(218, 28);
this.ADBWirelessEnable.TabIndex = 0;
this.ADBWirelessEnable.Text = "Enable Wireless ADB";
this.ADBWirelessEnable.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -589,11 +567,11 @@
this.otherDrop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.otherDrop.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.otherDrop.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.otherDrop.Location = new System.Drawing.Point(0, 458);
this.otherDrop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.otherDrop.Location = new System.Drawing.Point(0, 373);
this.otherDrop.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.otherDrop.Name = "otherDrop";
this.otherDrop.Padding = new System.Windows.Forms.Padding(9, 0, 0, 0);
this.otherDrop.Size = new System.Drawing.Size(291, 34);
this.otherDrop.Padding = new System.Windows.Forms.Padding(7, 0, 0, 0);
this.otherDrop.Size = new System.Drawing.Size(218, 28);
this.otherDrop.TabIndex = 3;
this.otherDrop.Text = "> OTHER";
this.otherDrop.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -607,10 +585,10 @@
this.backupContainer.Controls.Add(this.restorebutton);
this.backupContainer.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::AndroidSideloader.Properties.Settings.Default, "SubButtonColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.backupContainer.Dock = System.Windows.Forms.DockStyle.Top;
this.backupContainer.Location = new System.Drawing.Point(0, 384);
this.backupContainer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.backupContainer.Location = new System.Drawing.Point(0, 313);
this.backupContainer.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.backupContainer.Name = "backupContainer";
this.backupContainer.Size = new System.Drawing.Size(291, 74);
this.backupContainer.Size = new System.Drawing.Size(218, 60);
this.backupContainer.TabIndex = 76;
//
// backupDrop
@@ -625,11 +603,11 @@
this.backupDrop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.backupDrop.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.backupDrop.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.backupDrop.Location = new System.Drawing.Point(0, 350);
this.backupDrop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.backupDrop.Location = new System.Drawing.Point(0, 285);
this.backupDrop.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.backupDrop.Name = "backupDrop";
this.backupDrop.Padding = new System.Windows.Forms.Padding(9, 0, 0, 0);
this.backupDrop.Size = new System.Drawing.Size(291, 34);
this.backupDrop.Padding = new System.Windows.Forms.Padding(7, 0, 0, 0);
this.backupDrop.Size = new System.Drawing.Size(218, 28);
this.backupDrop.TabIndex = 2;
this.backupDrop.Text = "> BACKUP";
this.backupDrop.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -649,10 +627,10 @@
this.sideloadContainer.Controls.Add(this.obbcopybutton);
this.sideloadContainer.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::AndroidSideloader.Properties.Settings.Default, "SubButtonColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.sideloadContainer.Dock = System.Windows.Forms.DockStyle.Top;
this.sideloadContainer.Location = new System.Drawing.Point(0, 68);
this.sideloadContainer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.sideloadContainer.Location = new System.Drawing.Point(0, 56);
this.sideloadContainer.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.sideloadContainer.Name = "sideloadContainer";
this.sideloadContainer.Size = new System.Drawing.Size(291, 282);
this.sideloadContainer.Size = new System.Drawing.Size(218, 229);
this.sideloadContainer.TabIndex = 74;
//
// UpdateGamesButton
@@ -666,11 +644,10 @@
this.UpdateGamesButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.UpdateGamesButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.UpdateGamesButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.UpdateGamesButton.Location = new System.Drawing.Point(0, 238);
this.UpdateGamesButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.UpdateGamesButton.Location = new System.Drawing.Point(0, 196);
this.UpdateGamesButton.Name = "UpdateGamesButton";
this.UpdateGamesButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.UpdateGamesButton.Size = new System.Drawing.Size(291, 34);
this.UpdateGamesButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.UpdateGamesButton.Size = new System.Drawing.Size(218, 28);
this.UpdateGamesButton.TabIndex = 7;
this.UpdateGamesButton.Text = "Refresh Update List";
this.UpdateGamesButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -688,11 +665,10 @@
this.listApkButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.listApkButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.listApkButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.listApkButton.Location = new System.Drawing.Point(0, 204);
this.listApkButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.listApkButton.Location = new System.Drawing.Point(0, 168);
this.listApkButton.Name = "listApkButton";
this.listApkButton.Padding = new System.Windows.Forms.Padding(31, 0, 0, 0);
this.listApkButton.Size = new System.Drawing.Size(291, 34);
this.listApkButton.Padding = new System.Windows.Forms.Padding(23, 0, 0, 0);
this.listApkButton.Size = new System.Drawing.Size(218, 28);
this.listApkButton.TabIndex = 6;
this.listApkButton.Text = "Refresh All";
this.listApkButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -711,11 +687,11 @@
this.sideloadDrop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.sideloadDrop.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.sideloadDrop.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.sideloadDrop.Location = new System.Drawing.Point(0, 34);
this.sideloadDrop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.sideloadDrop.Location = new System.Drawing.Point(0, 28);
this.sideloadDrop.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.sideloadDrop.Name = "sideloadDrop";
this.sideloadDrop.Padding = new System.Windows.Forms.Padding(9, 0, 0, 0);
this.sideloadDrop.Size = new System.Drawing.Size(291, 34);
this.sideloadDrop.Padding = new System.Windows.Forms.Padding(7, 0, 0, 0);
this.sideloadDrop.Size = new System.Drawing.Size(218, 28);
this.sideloadDrop.TabIndex = 1;
this.sideloadDrop.Text = "> SIDELOAD";
this.sideloadDrop.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -729,9 +705,10 @@
this.diskLabel.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::AndroidSideloader.Properties.Settings.Default, "FontStyle", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.diskLabel.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.diskLabel.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.diskLabel.Location = new System.Drawing.Point(17, 805);
this.diskLabel.Location = new System.Drawing.Point(13, 654);
this.diskLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.diskLabel.Name = "diskLabel";
this.diskLabel.Size = new System.Drawing.Size(83, 20);
this.diskLabel.Size = new System.Drawing.Size(72, 16);
this.diskLabel.TabIndex = 7;
this.diskLabel.Text = "Disk Label";
//
@@ -742,9 +719,10 @@
this.speedLabel.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::AndroidSideloader.Properties.Settings.Default, "FontStyle", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.speedLabel.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.speedLabel.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.speedLabel.Location = new System.Drawing.Point(16, 902);
this.speedLabel.Location = new System.Drawing.Point(12, 733);
this.speedLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.speedLabel.Name = "speedLabel";
this.speedLabel.Size = new System.Drawing.Size(161, 20);
this.speedLabel.Size = new System.Drawing.Size(135, 16);
this.speedLabel.TabIndex = 76;
this.speedLabel.Text = "DLS: Speed in MBPS";
//
@@ -755,9 +733,10 @@
this.etaLabel.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::AndroidSideloader.Properties.Settings.Default, "FontStyle", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.etaLabel.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.etaLabel.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.etaLabel.Location = new System.Drawing.Point(16, 924);
this.etaLabel.Location = new System.Drawing.Point(12, 751);
this.etaLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.etaLabel.Name = "etaLabel";
this.etaLabel.Size = new System.Drawing.Size(160, 20);
this.etaLabel.Size = new System.Drawing.Size(131, 16);
this.etaLabel.TabIndex = 75;
this.etaLabel.Text = "ETA: HH:MM:SS Left";
//
@@ -770,10 +749,9 @@
this.freeDisclaimer.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::AndroidSideloader.Properties.Settings.Default, "FontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.freeDisclaimer.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.freeDisclaimer.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.freeDisclaimer.Location = new System.Drawing.Point(383, 768);
this.freeDisclaimer.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.freeDisclaimer.Location = new System.Drawing.Point(287, 624);
this.freeDisclaimer.Name = "freeDisclaimer";
this.freeDisclaimer.Size = new System.Drawing.Size(294, 50);
this.freeDisclaimer.Size = new System.Drawing.Size(246, 40);
this.freeDisclaimer.TabIndex = 79;
this.freeDisclaimer.Text = "This app is FREE!! \r\nClick here to go to the github.";
this.freeDisclaimer.TextAlign = System.Drawing.ContentAlignment.TopCenter;
@@ -791,11 +769,11 @@
this.gamesQueListBox.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.gamesQueListBox.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.gamesQueListBox.FormattingEnabled = true;
this.gamesQueListBox.ItemHeight = 20;
this.gamesQueListBox.Location = new System.Drawing.Point(801, 651);
this.gamesQueListBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.gamesQueListBox.ItemHeight = 16;
this.gamesQueListBox.Location = new System.Drawing.Point(601, 530);
this.gamesQueListBox.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.gamesQueListBox.Name = "gamesQueListBox";
this.gamesQueListBox.Size = new System.Drawing.Size(495, 122);
this.gamesQueListBox.Size = new System.Drawing.Size(372, 114);
this.gamesQueListBox.TabIndex = 9;
this.gamesQueListBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.gamesQueListBox_MouseClick);
//
@@ -811,10 +789,10 @@
this.devicesComboBox.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.devicesComboBox.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.devicesComboBox.FormattingEnabled = true;
this.devicesComboBox.Location = new System.Drawing.Point(303, 48);
this.devicesComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.devicesComboBox.Location = new System.Drawing.Point(227, 39);
this.devicesComboBox.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.devicesComboBox.Name = "devicesComboBox";
this.devicesComboBox.Size = new System.Drawing.Size(273, 28);
this.devicesComboBox.Size = new System.Drawing.Size(206, 24);
this.devicesComboBox.TabIndex = 1;
this.devicesComboBox.Text = "Select your device";
this.devicesComboBox.SelectedIndexChanged += new System.EventHandler(this.devicesComboBox_SelectedIndexChanged);
@@ -830,10 +808,10 @@
this.remotesList.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.remotesList.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.remotesList.FormattingEnabled = true;
this.remotesList.Location = new System.Drawing.Point(707, 48);
this.remotesList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.remotesList.Location = new System.Drawing.Point(530, 39);
this.remotesList.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.remotesList.Name = "remotesList";
this.remotesList.Size = new System.Drawing.Size(273, 28);
this.remotesList.Size = new System.Drawing.Size(206, 24);
this.remotesList.TabIndex = 3;
this.remotesList.Text = "Select a mirror";
this.remotesList.SelectedIndexChanged += new System.EventHandler(this.remotesList_SelectedIndexChanged);
@@ -848,10 +826,9 @@
this.gamesListView.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::AndroidSideloader.Properties.Settings.Default, "FontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.gamesListView.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.gamesListView.HideSelection = false;
this.gamesListView.Location = new System.Drawing.Point(303, 87);
this.gamesListView.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.gamesListView.Location = new System.Drawing.Point(227, 71);
this.gamesListView.Name = "gamesListView";
this.gamesListView.Size = new System.Drawing.Size(992, 520);
this.gamesListView.Size = new System.Drawing.Size(745, 423);
this.gamesListView.TabIndex = 6;
this.gamesListView.UseCompatibleStateImageBehavior = false;
this.gamesListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
@@ -868,10 +845,9 @@
this.searchTextBox.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::AndroidSideloader.Properties.Settings.Default, "FontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.searchTextBox.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.searchTextBox.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.searchTextBox.Location = new System.Drawing.Point(988, 49);
this.searchTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.searchTextBox.Location = new System.Drawing.Point(741, 40);
this.searchTextBox.Name = "searchTextBox";
this.searchTextBox.Size = new System.Drawing.Size(307, 25);
this.searchTextBox.Size = new System.Drawing.Size(231, 22);
this.searchTextBox.TabIndex = 5;
this.searchTextBox.Text = "Search";
this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged);
@@ -880,25 +856,23 @@
//
this.gamesPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.gamesPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.gamesPictureBox.Location = new System.Drawing.Point(304, 651);
this.gamesPictureBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.gamesPictureBox.Location = new System.Drawing.Point(228, 529);
this.gamesPictureBox.Name = "gamesPictureBox";
this.gamesPictureBox.Size = new System.Drawing.Size(489, 263);
this.gamesPictureBox.Size = new System.Drawing.Size(367, 214);
this.gamesPictureBox.TabIndex = 84;
this.gamesPictureBox.TabStop = false;
//
// gamesQueueLabel
//
this.gamesQueueLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.gamesQueueLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.gamesQueueLabel.AutoSize = true;
this.gamesQueueLabel.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::AndroidSideloader.Properties.Settings.Default, "FontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.gamesQueueLabel.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::AndroidSideloader.Properties.Settings.Default, "FontStyle", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.gamesQueueLabel.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.gamesQueueLabel.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.gamesQueueLabel.Location = new System.Drawing.Point(796, 773);
this.gamesQueueLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.gamesQueueLabel.Location = new System.Drawing.Point(597, 628);
this.gamesQueueLabel.Name = "gamesQueueLabel";
this.gamesQueueLabel.Size = new System.Drawing.Size(113, 20);
this.gamesQueueLabel.Size = new System.Drawing.Size(95, 16);
this.gamesQueueLabel.TabIndex = 86;
this.gamesQueueLabel.Text = "Games Queue";
//
@@ -914,10 +888,9 @@
this.MountButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.MountButton.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.MountButton.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.MountButton.Location = new System.Drawing.Point(584, 48);
this.MountButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.MountButton.Location = new System.Drawing.Point(438, 39);
this.MountButton.Name = "MountButton";
this.MountButton.Size = new System.Drawing.Size(116, 32);
this.MountButton.Size = new System.Drawing.Size(87, 26);
this.MountButton.TabIndex = 2;
this.MountButton.Text = "Mount";
this.MountButton.UseVisualStyleBackColor = false;
@@ -931,10 +904,9 @@
this.ProgressText.BackColor = System.Drawing.Color.Transparent;
this.ProgressText.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ProgressText.ForeColor = System.Drawing.Color.White;
this.ProgressText.Location = new System.Drawing.Point(300, 924);
this.ProgressText.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.ProgressText.Location = new System.Drawing.Point(225, 751);
this.ProgressText.Name = "ProgressText";
this.ProgressText.Size = new System.Drawing.Size(0, 24);
this.ProgressText.Size = new System.Drawing.Size(0, 18);
this.ProgressText.TabIndex = 88;
//
// notesRichTextBox
@@ -947,13 +919,12 @@
this.notesRichTextBox.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::AndroidSideloader.Properties.Settings.Default, "FontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.notesRichTextBox.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.notesRichTextBox.HideSelection = false;
this.notesRichTextBox.Location = new System.Drawing.Point(801, 802);
this.notesRichTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.notesRichTextBox.Location = new System.Drawing.Point(601, 647);
this.notesRichTextBox.Name = "notesRichTextBox";
this.notesRichTextBox.ReadOnly = true;
this.notesRichTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.notesRichTextBox.ShowSelectionMargin = true;
this.notesRichTextBox.Size = new System.Drawing.Size(493, 111);
this.notesRichTextBox.Size = new System.Drawing.Size(371, 96);
this.notesRichTextBox.TabIndex = 10;
this.notesRichTextBox.Text = "";
//
@@ -964,10 +935,9 @@
this.DragDropLbl.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::AndroidSideloader.Properties.Settings.Default, "FontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.DragDropLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.DragDropLbl.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.DragDropLbl.Location = new System.Drawing.Point(299, 746);
this.DragDropLbl.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.DragDropLbl.Location = new System.Drawing.Point(224, 606);
this.DragDropLbl.Name = "DragDropLbl";
this.DragDropLbl.Size = new System.Drawing.Size(394, 69);
this.DragDropLbl.Size = new System.Drawing.Size(320, 55);
this.DragDropLbl.TabIndex = 25;
this.DragDropLbl.Text = "DragDropLBL";
this.DragDropLbl.Visible = false;
@@ -975,16 +945,15 @@
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.DataBindings.Add(new System.Windows.Forms.Binding("ForeColor", global::AndroidSideloader.Properties.Settings.Default, "FontColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.label1.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::AndroidSideloader.Properties.Settings.Default, "FontStyle", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.label1.Font = global::AndroidSideloader.Properties.Settings.Default.FontStyle;
this.label1.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.label1.Location = new System.Drawing.Point(797, 898);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Location = new System.Drawing.Point(598, 730);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(97, 20);
this.label1.Size = new System.Drawing.Size(81, 16);
this.label1.TabIndex = 86;
this.label1.Text = "Install Notes";
//
@@ -998,10 +967,9 @@
this.pictureBox1.ErrorImage = null;
this.pictureBox1.ImageLocation = global::AndroidSideloader.Properties.Settings.Default.BackPicturePath;
this.pictureBox1.InitialImage = null;
this.pictureBox1.Location = new System.Drawing.Point(289, -1);
this.pictureBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.pictureBox1.Location = new System.Drawing.Point(217, -1);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(1019, 950);
this.pictureBox1.Size = new System.Drawing.Size(764, 772);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 74;
this.pictureBox1.TabStop = false;
@@ -1009,10 +977,10 @@
// MainForm
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = global::AndroidSideloader.Properties.Settings.Default.BackColor;
this.ClientSize = new System.Drawing.Size(1307, 954);
this.ClientSize = new System.Drawing.Size(980, 775);
this.Controls.Add(this.freeDisclaimer);
this.Controls.Add(this.DragDropLbl);
this.Controls.Add(this.MountButton);
@@ -1032,7 +1000,6 @@
this.Controls.Add(this.ProgressText);
this.Controls.Add(this.pictureBox1);
this.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::AndroidSideloader.Properties.Settings.Default, "BackColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.MaximizeBox = false;
this.Name = "MainForm";
this.ShowIcon = false;

View File

@@ -105,13 +105,12 @@ namespace AndroidSideloader
FlexibleMessageBox.Show(this, message);
}
private List<string> Devices = new List<string>();
public List<string> Devices = new List<string>();
public async Task<int> CheckForDevice()
{
Devices.Clear();
ADB.WakeDevice();
string output = string.Empty;
ADB.DeviceID = GetDeviceID();
Thread t1 = new Thread(() =>
@@ -168,16 +167,13 @@ namespace AndroidSideloader
private async void obbcopybutton_Click(object sender, EventArgs e)
{
ADB.WakeDevice();
ProcessOutput output = new ProcessOutput("", "");
var dialog = new FolderSelectDialog
{
Title = "Select your obb folder"
};
if (Properties.Settings.Default.IPAddress.Contains("connect"))
{
ADB.RunAdbCommandToString(Properties.Settings.Default.IPAddress);
}
ADB.WakeDevice();
if (dialog.Show(Handle))
{
Thread t1 = new Thread(() =>
@@ -198,8 +194,6 @@ namespace AndroidSideloader
public void ChangeTitlebarToDevice()
{
ADB.WakeDevice();
if (!Devices.Contains("unauthorized"))
{
if (Devices[0].Length > 1 && Devices[0].Contains("unauthorized"))
@@ -249,9 +243,6 @@ namespace AndroidSideloader
public async void showAvailableSpace()
{
ADB.WakeDevice();
string AvailableSpace = string.Empty;
ADB.DeviceID = GetDeviceID();
Thread t1 = new Thread(() =>
@@ -268,7 +259,6 @@ namespace AndroidSideloader
public string GetDeviceID()
{
ADB.WakeDevice();
string deviceId = string.Empty;
int index = -1;
devicesComboBox.Invoke(() => { index = devicesComboBox.SelectedIndex; });
@@ -299,12 +289,34 @@ namespace AndroidSideloader
private async void Form1_Load(object sender, EventArgs e)
{
ADB.WakeDevice();
Properties.Settings.Default.ADBPath = $"\"{Environment.CurrentDirectory}" + "\\adb\\adb.exe\"";
Properties.Settings.Default.MainDir = Environment.CurrentDirectory;
Properties.Settings.Default.Save();
string adbFile = "C:\\RSL\\2.14HF5\\adb\\adb.exe";
string adbDir = "C:\\RSL\\2.14HF5\\adb";
string fileName = "";
string destFile = "";
Properties.Settings.Default.MainDir = Environment.CurrentDirectory;
Properties.Settings.Default.Save();
if (!File.Exists(adbFile))
{
Directory.CreateDirectory(adbDir);
if (System.IO.Directory.Exists($"{Environment.CurrentDirectory}\\adb"))
{
string[] ADBfiles = System.IO.Directory.GetFiles($"{Properties.Settings.Default.MainDir}\\adb");
// Copy the files and overwrite destination files if they already exist.
foreach (string s in ADBfiles)
{
fileName = System.IO.Path.GetFileName(s);
destFile = System.IO.Path.Combine(adbDir, fileName);
System.IO.File.Copy(s, destFile, true);
}
}
}
Properties.Settings.Default.ADBPath = adbFile;
Properties.Settings.Default.Save();
ADB.RunAdbCommandToString("kill-server");
if (File.Exists(Sideloader.CrashLogPath))
{
DialogResult dialogResult = FlexibleMessageBox.Show(this, $@"Looks like sideloader crashed last time, please make an issue at https://github.com/nerdunit/androidsideloader/issues
@@ -431,14 +443,17 @@ Do you want to delete the {Sideloader.CrashLogPath} (if you press yes, this mess
ProcessOutput output = new ProcessOutput("", "");
var dialog = new FolderSelectDialog
{
Title = "Select your obb folder"
Title = "Select full backup or packagename backup folder"
};
if (dialog.Show(Handle))
{
string path = dialog.FileName;
Thread t1 = new Thread(() =>
{
output += ADB.RunAdbCommandToString($"push \"{path}\" /sdcard/Android/");
if (path.Contains("data"))
output += ADB.RunAdbCommandToString($"push \"{path}\" /sdcard/Android/");
else
output += ADB.RunAdbCommandToString($"push \"{path}\" /sdcard/Android/data/");
});
t1.IsBackground = true;
t1.Start();
@@ -453,7 +468,6 @@ Do you want to delete the {Sideloader.CrashLogPath} (if you press yes, this mess
private string listapps()
{
ADB.WakeDevice();
ADB.DeviceID = GetDeviceID();
return ADB.RunAdbCommandToString("shell pm list packages -3").Output;
}
@@ -537,12 +551,10 @@ Do you want to delete the {Sideloader.CrashLogPath} (if you press yes, this mess
string GameName = m_combo.SelectedItem.ToString();
string packagename = Sideloader.gameNameToPackageName(GameName);
MessageBox.Show($"If savedata is found it will be saved to Documents\\Rookie Backups\\{date_str}(year.month.date)\\{packagename}\\data", "Attempting Backup...", MessageBoxButtons.OK);
MessageBox.Show($"If savedata is found it will be saved to Documents\\Rookie Backups\\{date_str}(YYYY.MM.DD)\\{packagename}", "Attempting Backup...", MessageBoxButtons.OK);
Directory.CreateDirectory(CurrBackups);
String CurrbackupPaths = CurrBackups + "\\" + packagename + "\\data";
Directory.CreateDirectory(CurrbackupPaths);
ADB.RunAdbCommandToString($"pull \"/sdcard/Android/data/{packagename}\" \"{CurrbackupPaths}\"");
ADB.RunAdbCommandToString($"pull \"/sdcard/Android/data/{packagename}\" \"{CurrBackups}\"");
DialogResult dialogResult = MessageBox.Show($"Please check to see if we automatically found savedata in Documents\\Rookie Backups.\nIf there are no new files there is recommended that you do a full backup via Backup Gamedata before continuing.\nNOTE: Some games do not allow backup of savedata.\nContinue with the uninstall?", "Check for backup.", MessageBoxButtons.OKCancel);
if (dialogResult == DialogResult.Cancel)
{
@@ -651,7 +663,7 @@ Do you want to delete the {Sideloader.CrashLogPath} (if you press yes, this mess
if (File.Exists($"{Environment.CurrentDirectory}\\Install.txt"))
{
DialogResult dialogResult = MessageBox.Show("Special instructions have been found with this file, would you like to run them automatically?", "Special Instructions found!", MessageBoxButtons.OKCancel);
if (dialogResult == DialogResult.Cancel)
@@ -665,34 +677,34 @@ Do you want to delete the {Sideloader.CrashLogPath} (if you press yes, this mess
output.Output = "";
ChangeTitle("Done.");
}
}
string[] files = Directory.GetFiles(data);
foreach (string file in files)
{
}
string[] files = Directory.GetFiles(data);
foreach (string file in files)
{
if (File.Exists(file))
if (file.EndsWith(".apk"))
{
output += ADB.Sideload(file);
}
}
string[] folders = Directory.GetDirectories(data);
foreach (string folder in folders)
{
output += ADB.CopyOBB(folder);
Properties.Settings.Default.CurrPckg = dir;
Properties.Settings.Default.Save();
}
}
string[] folders = Directory.GetDirectories(data);
foreach (string folder in folders)
{
output += ADB.CopyOBB(folder);
Properties.Settings.Default.CurrPckg = dir;
Properties.Settings.Default.Save();
}
}
//if it's a file
else if (File.Exists(data))
{
string extension = Path.GetExtension(data);
if (extension == ".apk")
{
if (File.Exists($"{dir}\\Install.txt"))
{
DialogResult dialogResult = MessageBox.Show("Special instructions have been found with this file, would you like to run them automatically?", "Special Instructions found!", MessageBoxButtons.OKCancel);
if (dialogResult == DialogResult.Cancel)
return;
@@ -761,7 +773,6 @@ Do you want to delete the {Sideloader.CrashLogPath} (if you press yes, this mess
}
private void initListView()
{
ADB.WakeDevice();
gamesListView.Items.Clear();
gamesListView.Columns.Clear();
if (!File.Exists("installedPackages.json"))
@@ -890,8 +901,6 @@ Do you want to delete the {Sideloader.CrashLogPath} (if you press yes, this mess
private void initMirrors(bool random)
{
ADB.WakeDevice();
int index = 0;
remotesList.Invoke(() => { index = remotesList.SelectedIndex; remotesList.Items.Clear(); });
@@ -1244,7 +1253,6 @@ without him none of this would be possible
}
if (quotaError == false)
{
ADB.WakeDevice();
ADB.DeviceID = GetDeviceID();
quotaTries = 0;
progressBar.Value = 0;
@@ -1284,7 +1292,6 @@ without him none of this would be possible
}
Debug.WriteLine(wrDelimiter);
ADB.WakeDevice();
string[] folders = Directory.GetDirectories(Environment.CurrentDirectory + "\\" + gameName);
foreach (string folder in folders)
@@ -1336,6 +1343,7 @@ without him none of this would be possible
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
RCLONE.killRclone();
ADB.RunAdbCommandToString("kill-server");
}
private void ADBWirelessDisable_Click(object sender, EventArgs e)
@@ -1493,7 +1501,7 @@ without him none of this would be possible
FlexibleMessageBox.Show("There are no games in rclone, please check your internet connection and check if the config is working properly");
return;
}
string gamesToUpdate = "";
foreach (string packagename in Sideloader.InstalledPackages.Keys)
{
foreach (var release in SideloaderRCLONE.games)

View File

@@ -85,7 +85,7 @@ namespace AndroidSideloader.Properties {
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool userJsonOnGameInstall {
get {
return ((bool)(this["userJsonOnGameInstall"]));

View File

@@ -18,7 +18,7 @@
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="userJsonOnGameInstall" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="CallUpgrade" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>

34
QuestForm.Designer.cs generated
View File

@@ -332,7 +332,7 @@ namespace AndroidSideloader
"4"});
this.CPUComboBox.Location = new System.Drawing.Point(13, 126);
this.CPUComboBox.Name = "CPUComboBox";
this.CPUComboBox.Size = new System.Drawing.Size(345, 21);
this.CPUComboBox.Size = new System.Drawing.Size(345, 24);
this.CPUComboBox.TabIndex = 2;
this.CPUComboBox.Text = "Select CPU level (0 for default)";
//
@@ -354,7 +354,7 @@ namespace AndroidSideloader
"4"});
this.GPUComboBox.Location = new System.Drawing.Point(13, 97);
this.GPUComboBox.Name = "GPUComboBox";
this.GPUComboBox.Size = new System.Drawing.Size(345, 21);
this.GPUComboBox.Size = new System.Drawing.Size(345, 24);
this.GPUComboBox.TabIndex = 1;
this.GPUComboBox.Text = "Select GPU level (0 for default)";
//
@@ -368,7 +368,7 @@ namespace AndroidSideloader
this.label7.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.label7.Location = new System.Drawing.Point(13, 532);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(44, 15);
this.label7.Size = new System.Drawing.Size(49, 16);
this.label7.TabIndex = 3;
this.label7.Text = "Fov - X";
this.label7.Visible = false;
@@ -384,7 +384,7 @@ namespace AndroidSideloader
this.label8.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.label8.Location = new System.Drawing.Point(191, 532);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(43, 15);
this.label8.Size = new System.Drawing.Size(50, 16);
this.label8.TabIndex = 3;
this.label8.Text = "Fov - Y";
this.label8.Visible = false;
@@ -400,7 +400,7 @@ namespace AndroidSideloader
this.label9.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.label9.Location = new System.Drawing.Point(11, 583);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(79, 15);
this.label9.Size = new System.Drawing.Size(87, 16);
this.label9.TabIndex = 3;
this.label9.Text = "Refresh Rate";
this.label9.Visible = false;
@@ -415,7 +415,7 @@ namespace AndroidSideloader
this.label6.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.label6.Location = new System.Drawing.Point(13, 484);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(142, 15);
this.label6.Size = new System.Drawing.Size(153, 16);
this.label6.TabIndex = 3;
this.label6.Text = "Enter Custom Username";
this.label6.Visible = false;
@@ -431,7 +431,7 @@ namespace AndroidSideloader
this.label5.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.label5.Location = new System.Drawing.Point(12, 434);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(278, 15);
this.label5.Size = new System.Drawing.Size(301, 16);
this.label5.TabIndex = 3;
this.label5.Text = "Custom Resolution Width (Height auto calculated)";
this.label5.Visible = false;
@@ -447,7 +447,7 @@ namespace AndroidSideloader
this.ResolutionLabel.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.ResolutionLabel.Location = new System.Drawing.Point(11, 183);
this.ResolutionLabel.Name = "ResolutionLabel";
this.ResolutionLabel.Size = new System.Drawing.Size(163, 15);
this.ResolutionLabel.Size = new System.Drawing.Size(177, 16);
this.ResolutionLabel.TabIndex = 3;
this.ResolutionLabel.Text = "Resolution (p eye, 0=default)";
//
@@ -461,7 +461,7 @@ namespace AndroidSideloader
this.FOVy.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.FOVy.Location = new System.Drawing.Point(191, 507);
this.FOVy.Name = "FOVy";
this.FOVy.Size = new System.Drawing.Size(167, 20);
this.FOVy.Size = new System.Drawing.Size(167, 22);
this.FOVy.TabIndex = 12;
this.FOVy.Text = "0";
this.FOVy.Visible = false;
@@ -477,7 +477,7 @@ namespace AndroidSideloader
this.FOVx.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.FOVx.Location = new System.Drawing.Point(13, 507);
this.FOVx.Name = "FOVx";
this.FOVx.Size = new System.Drawing.Size(169, 20);
this.FOVx.Size = new System.Drawing.Size(169, 22);
this.FOVx.TabIndex = 11;
this.FOVx.Text = "0";
this.FOVx.Visible = false;
@@ -493,7 +493,7 @@ namespace AndroidSideloader
this.UsrBox.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.UsrBox.Location = new System.Drawing.Point(13, 459);
this.UsrBox.Name = "UsrBox";
this.UsrBox.Size = new System.Drawing.Size(345, 20);
this.UsrBox.Size = new System.Drawing.Size(345, 22);
this.UsrBox.TabIndex = 10;
this.UsrBox.Text = "0";
this.UsrBox.Visible = false;
@@ -509,7 +509,7 @@ namespace AndroidSideloader
this.ResBox.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.ResBox.Location = new System.Drawing.Point(13, 409);
this.ResBox.Name = "ResBox";
this.ResBox.Size = new System.Drawing.Size(345, 20);
this.ResBox.Size = new System.Drawing.Size(345, 22);
this.ResBox.TabIndex = 9;
this.ResBox.Text = "0";
this.ResBox.Visible = false;
@@ -525,7 +525,7 @@ namespace AndroidSideloader
this.TextureResTextBox.ForeColor = global::AndroidSideloader.Properties.Settings.Default.FontColor;
this.TextureResTextBox.Location = new System.Drawing.Point(13, 155);
this.TextureResTextBox.Name = "TextureResTextBox";
this.TextureResTextBox.Size = new System.Drawing.Size(169, 20);
this.TextureResTextBox.Size = new System.Drawing.Size(169, 22);
this.TextureResTextBox.TabIndex = 3;
this.TextureResTextBox.Text = "0";
//
@@ -581,7 +581,7 @@ namespace AndroidSideloader
"120"});
this.QURfrRt.Location = new System.Drawing.Point(12, 555);
this.QURfrRt.Name = "QURfrRt";
this.QURfrRt.Size = new System.Drawing.Size(170, 21);
this.QURfrRt.Size = new System.Drawing.Size(170, 24);
this.QURfrRt.TabIndex = 13;
this.QURfrRt.Text = "0";
this.QURfrRt.Visible = false;
@@ -603,7 +603,7 @@ namespace AndroidSideloader
"120"});
this.RefreshRateComboBox.Location = new System.Drawing.Point(13, 68);
this.RefreshRateComboBox.Name = "RefreshRateComboBox";
this.RefreshRateComboBox.Size = new System.Drawing.Size(345, 21);
this.RefreshRateComboBox.Size = new System.Drawing.Size(345, 24);
this.RefreshRateComboBox.TabIndex = 0;
this.RefreshRateComboBox.Text = "Select refresh rate";
//
@@ -649,8 +649,8 @@ namespace AndroidSideloader
this.Controls.Add(this.button1);
this.Controls.Add(this.QURfrRt);
this.Controls.Add(this.RefreshRateComboBox);
this.MaximumSize = new System.Drawing.Size(386, 808);
this.MinimumSize = new System.Drawing.Size(386, 608);
this.MaximumSize = new System.Drawing.Size(386, 776);
this.MinimumSize = new System.Drawing.Size(386, 776);
this.Name = "QuestForm";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;

View File

@@ -58,16 +58,20 @@ And all of them added to PATH, without ANY of them, the spoofer won't work!";
var commands = File.ReadAllLines(path);
foreach (string cmd in commands)
{
if (cmd.StartsWith("\"7z.exe\""))
if (cmd.Contains("7z.exe"))
{
Program.form.ChangeTitle($"Running {cmd}");
Logger.Log($"Logging command: {cmd} from file: {path}");
output += ADB.RunAdbCommandToStringWOADB(cmd, path);
output += ADB.RunCommandToString(cmd, path);
}
if (cmd.StartsWith("adb"))
{
string replacement = "";
string pattern = "adb";
string replacement = $"{Properties.Settings.Default.ADBPath} -s {ADB.DeviceID}";
if (ADB.DeviceID.Length > 1)
replacement = $"{Properties.Settings.Default.ADBPath} -s {ADB.DeviceID}";
else
replacement = $"{Properties.Settings.Default.ADBPath}";
Regex rgx = new Regex(pattern);
string result = rgx.Replace(cmd, replacement);
Program.form.ChangeTitle($"Running {result}");

View File

@@ -115,7 +115,7 @@ namespace AndroidSideloader
catch { return 0; }
}
public static async Task updateConfig(string remote)
public static void updateConfig(string remote)
{
string localHash = "";
try { localHash = File.ReadAllText(Environment.CurrentDirectory + "\\rclone\\hash.txt"); } catch { } //file may not exist

View File

@@ -17,7 +17,7 @@ namespace AndroidSideloader
private static string RawGitHubUrl;
private static string GitHubUrl;
static readonly public string LocalVersion = "2.1HF2";
static readonly public string LocalVersion = "2.1HF5";
public static string currentVersion = string.Empty;
public static string changelog = string.Empty;
@@ -28,8 +28,6 @@ namespace AndroidSideloader
try
{
currentVersion = client.GetStringAsync($"{RawGitHubUrl}/master/version").Result;
if (currentVersion.Length > LocalVersion.Length)
currentVersion = currentVersion.Remove(currentVersion.Length - 1);
changelog = client.GetStringAsync($"{RawGitHubUrl}/master/changelog.txt").Result;
client.Dispose();
}
@@ -40,8 +38,8 @@ namespace AndroidSideloader
//Call this to ask the user if they want to update
public static void Update()
{
RawGitHubUrl = $"https://raw.githubusercontent.com/{Repostory}";
GitHubUrl = $"https://github.com/{Repostory}";
RawGitHubUrl = $"https://raw.githubusercontent.com/nerdunit/androidsideloader";
GitHubUrl = $"https://github.com/nerdunit/androidsideloader";
if (IsUpdateAvailable())
doUpdate();
}

View File

@@ -1,6 +1,81 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Update RSL2.1HF5
Fixed ADB path for usernames containing spaces. ADB now located at c:\RSL\VersionNumber\ADB
- -HarryEffingPotter-
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEKjgtlwMyrpVu4TGfx/Rql1VoczcFAmDdNvsACgkQx/Rql1Vo
czdIWQ/+OvvchZOuwMZJvd6d/N4WmBUPKm3TzyiF5JM/STLEbLIHB1p6LQg+6J3K
3d9x3mQmu/gMHMumsfmuOuHHI7OOs9CLOVY2UFm7CqTnDf7iCxl8+6/iQw48yfj9
63qwUKZdLueRX9IqtcV2MwZJP7eKdZmtv6ALyRbjWmo2fgbm/Fs1U+TfGnlY7qLg
wIascv5DuKRyHvRzlgdn6OqmewWTxHDOTwCTjodROIK9guCELNYhEWv/TtgMldv9
gz1Lr8KZOcxNltpvstJgdbeFy61LK67su0rKZHsGMu4x0hDe4YOyjyMDtXrVJ0VH
SJBqDgSKD3HE/MNYkCWusqs7np2XKXC8hP6nm2QO9zM44d+UWDfrJbwvvw6QUoez
Iqk/PskC3sF7kWAv4O+LRmLDlrHD2RG5TkkE4ohiIi4D4VaNEx4QyVf6INN+A9xd
IxcvXC9QkFwffUD93cThEdLNRnrnzZSsUFMRh3XrvPbq2wfvWjqZX1EGfD7ug0Mf
r9uPX4RdILvsXeybefiiwLiw3UNMJtUlaKDvqIit5S78BIP6DY+dGnMMRIQJa1vd
XBPnIHyifzvl1nyYd6TWCFRuOzZLYirv4Ug6xS1/KzyURXIz2P0EEhDURJAR/q+M
ZmqSO2eQo64B7Dfa9oRLKkZRfhWFgtYA9QKm9ei7tOPbnJ+2718=
=o5Nr
-----END PGP SIGNATURE-----
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
RSL 2.1HF4
= Moved ADB files to AppData\Roaming\RSL to fix compatibility issues across the board.
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEKjgtlwMyrpVu4TGfx/Rql1VoczcFAmDa9rQACgkQx/Rql1Vo
czeiYQ//X6e3DD51Kgta/omu0fVtPM4lxt+P/H5ij1xbNPmoaL7w+QvNeFqVLPs0
T8btbEkDT7pisOHQtHFKENs4G0Sck0RkI0jVNu1lYIT67tmTYyFGP4jOxopktmNE
uydmI8g+8UkuTPYIKpkYJUOrWT1u4IV0SoBsdERYU7qRZmvCqWgwqdcs4R6wAdm0
FNqWRbUo/LhFw1rQicny4vL7w6rf7PvAksWifqbl1KfBFAchf4cZ3+YKeyO4V2Ym
7LcNgVGaSuPCr5dKmVr31B0kU0XrV8KPpKwgoIOym8eH8PNuaj3elwbndqYZ95fB
xNFluF9z9qejiIkYM9UDSoeNEfeJaUwIfgb1WI4w+BdlTWaYZfsG+DF+VOBvSU/h
YP1ucGrqCu2lLxcIS5ffNd7dTjS22D2x2rErqXGl+ETgqgVHK9NU9Bd02VVyP171
Ryq/JRd9tvFknAG6YViVADJDzKdnuwFYeo/T5wgt8P7GtzVZWmZbur6crXK454IH
TkyLn9XFbJneGPxjLNm4VwCR0XWFmhAsE+CfRz52hL18RAxyeohWq7RBTt+d49t9
eOhTTzOHoWgroOVTV793r+FLdc4nYDhLXRm6I65qhvQhEPCqZDIA1xuvzPbSectb
VNNRuPmhxDgtevFFsU/sX8xOv8pKi6naW8N6jobXPavwegABCEg=
=61BS
-----END PGP SIGNATURE-----
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
RSL 2.1HF3
= Fixed QUSettings not working issue.(unused fields in QUSettings MUST have 0's in them or it will not work, reset/clear all fields button now reflect this.)
= Fixed Uninstall auto-save-backup
= Fixed Install.txt automation messages.
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEKjgtlwMyrpVu4TGfx/Rql1VoczcFAmC2YLYACgkQx/Rql1Vo
czfzXxAAlgKvec94/48QX27BYxVLExEO1AukM7c3D4ONDq4xz6R7jZdoGTbSpfPg
IVbJX8ZeMVQS5yPQr3YOEYdfunU5olu2+XMx5be0uuq0VpZsHdh4Z99GDZId+YFX
W9AJ86p0l9Z6m6npJnc64Fz+3akq8bbZVNHjIpTl99ZSpNMuwYtGpKzNjDXZ9h/Q
v4xQKlCJy7pZO9XY6wEf1z0s+2dMCAGTnfVP6nSXwhx+jKHudRcIRNy7vfgke7d6
tVGRQxe0UP1fth9D80R6y+PGw318kNxqPH5b9bN5+PJrHwaHdQ7vXwrVdgVU4g12
53bGcRdNH1+N0mEXCz0VQyYmd73HVYtNYYEtocUY+I/W/sxBqbPcvVJ+XZinFfdg
BaX5I2M5Ub56wUtyzpP3OoFkIMAN6/Z9S1k/Mq2qTPH/aGtprFzWgmg32kWHi9/n
64uIf4TQlr4o6t0MrMR1pk/F38Rnow66sn5v4eOQ01c9bFOANTMxL2fQiZluSK98
36eYYdxPkSwPiRDVZTrwOOPbJfiHeKREHFcBT2C7OehJm5PkueSzW+CVnjSfH92q
yjp1+zGEaYn5pos+TeaN22uG0L3U5wbfUuCHSHWstIMEwx0aroKhRyou1MtZn40W
k5PjmtDRjt36eLH3MzSxnhwydFrC2V2rl6UbtxjYjdlqEEdFlX4=
=224y
-----END PGP SIGNATURE-----
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
!!!IMPORTANT!!!
THIS VERSION IS A WORK IN PROGRESS DUE TO LACK OF TESTERS!!!

View File

@@ -34009,3 +34009,700 @@ tmpfs 2973372 0 2973372 0% /apex
Running command shell input keyevent KEYCODE_WAKEUP
Running command shell input keyevent KEYCODE_WAKEUP
Running command shell input keyevent KEYCODE_WAKEUP
Running command shell input keyevent KEYCODE_WAKEUP
Running command shell input keyevent KEYCODE_WAKEUP
Running command shell df
Running command shell input keyevent KEYCODE_WAKEUP
Filesystem 1K-blocks Used Available Use% Mounted on
tmpfs 2973372 736 2972636 1% /dev
tmpfs 2973372 0 2973372 0% /mnt
tmpfs 2973372 0 2973372 0% /apex
/dev/block/dm-4 1691188 1685900 0 100% /
/dev/block/dm-5 310760 309800 0 100% /vendor
/dev/block/dm-6 242680204 191465652 51083480 79% /data
/data/media 242680204 191465652 51083480 79% /storage/emulated
Running command shell input keyevent KEYCODE_WAKEUP
Running command devices
List of devices attached
192.168.0.101:5555 device
Running command shell input keyevent KEYCODE_WAKEUP
Devices:
192.168.0.101:5555
Running command shell input keyevent KEYCODE_WAKEUP
Running command shell input keyevent KEYCODE_WAKEUP
Running command shell input keyevent KEYCODE_WAKEUP
Running command -s 192.168.0.101:5555 shell input keyevent KEYCODE_WAKEUP
Running command -s 192.168.0.101:5555 shell input keyevent KEYCODE_WAKEUP
Running command -s 192.168.0.101:5555 shell df
Running Rclone command: listremotes
Filesystem 1K-blocks Used Available Use% Mounted on
tmpfs 2973372 736 2972636 1% /dev
tmpfs 2973372 0 2973372 0% /mnt
tmpfs 2973372 0 2973372 0% /apex
/dev/block/dm-4 1691188 1685900 0 100% /
/dev/block/dm-5 310760 309800 0 100% /vendor
/dev/block/dm-6 242680204 191465656 51083476 79% /data
/data/media 242680204 191465656 51083476 79% /storage/emulated
Rclone error:
Rclone Output: VRP-mirror02:
VRP-mirror03:
VRP-mirror06:
VRP-mirror09:
VRP-mirror10:
VRP-mirror12:
VRP-mirror13:
VRP-mirror16:
Loaded following mirrors:
VRP-mirror02
VRP-mirror03
VRP-mirror06
VRP-mirror09
VRP-mirror10
VRP-mirror12
VRP-mirror13
VRP-mirror16
Running Rclone command: cat "VRP-mirror13:Quest Games/GameList.txt"
Rclone error:
Rclone Output: Game Name;Release Name;Release APK Path;Package Name;Version Code;Version Name
1976 Back To Midway;1976 Back To Midway v10+1.1 -QU;1976 Back To Midway v10+1.1 -QU/1976 Back To Midway [1.1.10] S3.0.2.apk;com.IvanovichGames.game1976;10;1.1
2MD - VR Football Unleashed;2MD - VR Football Unleashed v65+1.21 -QU;2MD - VR Football Unleashed v65+1.21 -QU/2MD - VR Football Unleashed [1.21.65] S3.0.2.apk;com.truantpixel.twomdquest;65;1.21
51 Aliens TV;51 Aliens TV v4+0.4 -QU;51 Aliens TV v4+0.4 -QU/fiftyonealienstvquest [0.4] S3.0.2.apk;com.fiftyonealiens.fiftyonealienstvquest;4;0.4
A Fishermans Tale;A Fishermans Tale v16+1.064 -QU;A Fishermans Tale v16+1.064 -QU/A Fishermans Tale [1.064.16] S2.11.apk;com.innerspacevr.afishermanstale;16;1.064
A Lullaby of Colors;A Lullaby of Colors v1+1.2.2 -unknown;A Lullaby of Colors v1+1.2.2 -unknown/A lullaby of colors v1.2.2_patched2019.09.28.apk;com.idumpling.a_lullaby_of_colors;1;1.2.2
A Moment in Cannes;A Moment in Cannes v1+0.3 -unknown;A Moment in Cannes v1+0.3 -unknown/A Moment in Cannes v0.3.22.apk;com.azadux.Cannes_Fort;1;0.3
AFFECTED - The Manor;AFFECTED - The Manor v82+1.28 -QU;AFFECTED - The Manor v82+1.28 -QU/AFFECTED - The Manor [1.28.82] S3.0.2.apk;com.fallen.manorquest;82;1.28
ALTDEUS - Beyond Chronos;ALTDEUS - Beyond Chronos v434+1.0.434 -QU;ALTDEUS - Beyond Chronos v434+1.0.434 -QU/ALTDEUS - Beyond Chronos [1.0.434] S3.0.2.apk;com.MyDearest.Altdeus;434;1.0.434
AUDICA;AUDICA v128543601+1.0.3.2 -QU (with DLC);AUDICA v128543601+1.0.3.2 -QU (with DLC)/AUDICA [1.0.3.2.128543601] + DLC_unlocker S3.0.2.apk;com.harmonixmusic.kata;128543601;1.0.3.2
Accounting+;Accounting+ v35+1.24.35 -QU;Accounting+ v35+1.24.35 -QU/Accounting+ [1.24.35].apk;com.crowscrowscrows.AccountingPlus;35;1.24.35
Acron - Attack of the Squirrels!;Acron - Attack of the Squirrels! v114094392+1.14.94392 -QU;Acron - Attack of the Squirrels! v114094392+1.14.94392 -QU/Acron_ Attack of the Squirrels! [1.14.94392.114094392] patch+savefix+90Hz+CustomRes.apk;com.resolutiongames.codenamelazarus;114094392;1.14.94392
Air Brigade 2;Air Brigade 2 v20+0.2 -unknown;Air Brigade 2 v20+0.2 -unknown/AirBrigade2.apk;com.OnlyHuman.AirBrigade2vr;20;0.2
Alienation;Alienation v23+1.293 -QU;Alienation v23+1.293 -QU/Alienation v23+1.293 -QU.apk;com.fiftyonealiens.alienationgame;23;1.293
All Hail the Cook-o-tron;All Hail the Cook-o-tron v7+1.2.3 -QU;All Hail the Cook-o-tron v7+1.2.3 -QU/Cookotron Quest [1.2.3.7] S3.0.2.apk;com.SlapJak.CookOtron;7;1.2.3
All Hail the Cook-o-tron;All Hail the Cook-o-tron v7+1.2.3 -VRP;All Hail the Cook-o-tron v7+1.2.3 -VRP/All Hail the Cook-o-tron v1.2.3 -VRP.apk;com.SlapJak.CookOtron;7;1.2.3
Angry Birds VR - Isle of Pigs;Angry Birds VR - Isle of Pigs v305100058+3.5.100058 -QU;Angry Birds VR - Isle of Pigs v305100058+3.5.100058 -QU/Angry Birds VR - Isle of Pigs [3.5.100058.305100058] S3.0.2.apk;com.resolutiongames.abvriop.santacruz;305100058;3.5.100058
Apex Construct;Apex Construct v45+45.0 -VRP;Apex Construct v45+45.0 -VRP/Apex Construct [v45.0].apk;com.fasttravelgames.apexconstruct;45;45.0
Apollo 11;Apollo 11 v22+2.3 -Q2Patched-90Hz-CustomRes -QU;Apollo 11 v22+2.3 -Q2Patched-90Hz-CustomRes -QU/Apollo_11 [2.3.22] patch+savefix+90Hz+CustomRes.apk;com.immersivevreducation.Apollo11QuestFinal;22;2.3
Arcaxer;Arcaxer v120+1.36.12 -QU;Arcaxer v120+1.36.12 -QU/Arcaxer [1.36.12.120] S3.0.2.apk;com.Overrungames.Arcaxer;120;1.36.12
Arcaxer;Arcaxer v120+1.36.12 -QU;Arcaxer v120+1.36.12 -QU/Arcaxer v120+1.36.12 -QU.apk;com.Overrungames.Arcaxer;120;1.36.12
Arizona Sunshine;Arizona Sunshine v21686+1.6 -QU (with DLC, v.2);Arizona Sunshine v21686+1.6 -QU (with DLC, v.2)/Arizona Sunshine [1.6.21686]+ DLC_unlocker S3.0.2.apk;com.vertigogames.azsq;21686;1.6
ArtPlunge;ArtPlunge v201801250+201801250 -unknown;ArtPlunge v201801250+201801250 -unknown/APlunge v201909211 patched.apk;com.spaceplunge.artplungeoc;201801250;201801250
Artifact;Artifact v17+1.0.6 -unknown;Artifact v17+1.0.6 -unknown/Artifact v1.0.6 (com.Mixreality.Artifact) patched.apk;com.Mixreality.Artifact;17;1.0.6
Ashtar UFO;Ashtar UFO v1+1.0 -unknown;Ashtar UFO v1+1.0 -unknown/Ashtar UFO v1.0.apk;com.test.mj12;1;1.0
Audio Trip;Audio Trip v121+1.0.2710 -QU;Audio Trip v121+1.0.2710 -QU/Audio Trip [1.0.2710.121] S3.0.2.apk;com.KinemotikStudios.AudioTripQuest;121;1.0.2710
Audioshield;Audioshield v118+118 -QU;Audioshield v118+118 -QU/Audioshield v118.apk;com.Audiosurf.Audioshield;118;118
Axegend;Axegend v1+3.0.5 -unknown;Axegend v1+3.0.5 -unknown/Axegend [3.0.5].apk;com.SubversionSquads.Axegend;1;3.0.5
B-Team;B-Team v68+20.03.19.356857 -QU;B-Team v68+20.03.19.356857 -QU/B-Team v20.03.19.356857.apk;com.twistedpixelgames.BTEAM_App;68;20.03.19.356857
BATTLESCAR - Punk Was Invented By Girls;BATTLESCAR - Punk Was Invented By Girls v1045+_1045_3082 -QU;BATTLESCAR - Punk Was Invented By Girls v1045+_1045_3082 -QU/BATTLESCAR - Punk Was Invented By Girls [10453082] S3.0.2.apk;com.atlas.Battlescar.Quest;1045;_1045_3082
BOW MAN;BOW MAN v224+1.4.0-224 -QU;BOW MAN v224+1.4.0-224 -QU/BOW MAN [1.4.0+224] S3.0.2.apk;com.dmm.bowman;224;1.4.0+224
Baba Yaga;Baba Yaga v3500+1.0.3500 -QU;Baba Yaga v3500+1.0.3500 -QU/Baba Yaga [1.0.3500] S3.0.2.apk;com.baobab.babayaga;3500;1.0.3500
Baby Hands;Baby Hands v8+0.02 -VRP;Baby Hands v8+0.02 -VRP/Baby Hands v8+0.02 -VRP.apk;com.ChickenWaffle.BabyHands;8;0.02
Bacon Roll;Bacon Roll v3+1.15.30 -QU;Bacon Roll v3+1.15.30 -QU/Bacon Roll [1.15.30] S3.0.2.apk;com.fieldofvision.baconroll;3;1.15.30
Bait!;Bait! v112063217+1.12.63217 -unknown;Bait! v112063217+1.12.63217 -unknown/Bait_v1.2_modded.apk;com.resolutiongames.baitsantacruz;112063217;1.12.63217
Ballista;Ballista v42+20.42 -QU (b);Ballista v42+20.42 -QU (b)/Ballista [20.42] S3.0.2.apk;com.HighVoltage.Crossbow;42;20.42
Ballooning Adventures;Ballooning Adventures v5+1.1.2 -QU;Ballooning Adventures v5+1.1.2 -QU/BallooningAdventures [1.1.2.5] S3.0.2.apk;com.vector3up.BallooningAdventures;5;1.1.2
BanditSix;BanditSix v130+1.1.0 -unknown;BanditSix v130+1.1.0 -unknown/BanditSix v1.1.0.130_patched.apk;com.climaxstudios.BanditSix;130;1.1.0
Bang Squash;Bang Squash v2+1.0 -unknown;Bang Squash v2+1.0 -unknown/Bang Squash_1.0_Patched.apk;com.lebersoftware.bangsquashpro;2;1.0
Basket VR;Basket VR v2+0.2 -unknown;Basket VR v2+0.2 -unknown/Basket VR v0.2.apk;com.realdragon.basketlittle;2;0.2
Beat Arena;Beat Arena v39+1.2.0 -QU;Beat Arena v39+1.2.0 -QU/Beat Arena [1.2.0.39] S3.0.2.apk;jp.konami.bvr;39;1.2.0
Beat Blaster;Beat Blaster v9+1.0 -QU;Beat Blaster v9+1.0 -QU/Beat Blaster [1.0.9] S3.0.2.apk;com.IvanovichGames.BeatBlasterVR;9;1.0
Beat Saber;Beat Saber v132+1.3.2 (w.BMBF RSL2.1 or manual install only);Beat Saber v132+1.3.2 (w.BMBF RSL2.1 or manual install only)/BS.apk;com.beatgames.beatsaber;157;1.13.2
Beat Saber;Beat Saber v213+1.16.0 (With DLC, No BMBF) -QU;Beat Saber v213+1.16.0 (With DLC, No BMBF) -QU/Beat Saber v213+1.16.0 (With DLC, No BMBF)-QU.apk;com.beatgames.beatsaber;213;1.16.0
Big Breezy Boat;Big Breezy Boat v189+1.0.189 -QU;Big Breezy Boat v189+1.0.189 -QU/Big Breezy Boat [1.0.189] S3.0.2.apk;com.marineverse.morequest;189;1.0.189
Bionic Hunter;Bionic Hunter v4+2.3 -unknown;Bionic Hunter v4+2.3 -unknown/BionicHunter [2.3].apk;com.AnomosStudios.BionicHunter;4;2.3
Blair Witch;Blair Witch v49+1.46 -QU;Blair Witch v49+1.46 -QU/Blair Witch [1.46.49] S3.0.2.apk;pl.bloober.blairwitch;49;1.46
Blaston;Blaston v109109277+1.9.109277 -QU;Blaston v109109277+1.9.109277 -QU/Blaston [1.9.109277.109109277] S3.0.2.apk;com.resolutiongames.ignis;109109277;1.9.109277
Blockami VR;Blockami VR v1+0.1 -unknown;Blockami VR v1+0.1 -unknown/Blockami VR v1.00.apk;com.aardVRk.blockami;1;0.1
Blueplanet VR Explore;Blueplanet VR Explore v7+7 -QU;Blueplanet VR Explore v7+7 -QU/Blueplanet VR Explore [7] S3.0.2.apk;com.blueplanetvr.blueplanetvr_explore_alpha;7;7
Bodyguard 2;Bodyguard 2 v1+1.5 -unknown;Bodyguard 2 v1+1.5 -unknown/BODYGUARD 2 [1.5].apk;com.studio3DD.bodyguard2;1;1.5
Bonfire;Bonfire v542+1.0.542 -QU;Bonfire v542+1.0.542 -QU/Bonfire [1.0.542] S3.0.2.apk;com.baobab.bonfire;542;1.0.542
Box VR;Box VR v188+1.18 -unknown;Box VR v188+1.18 -unknown/Box VR [1.18.188]_multiplayer_DLC_patch+savefix.apk;com.fitxr.boxvr;188;1.18
Breakout VR;Breakout VR v3+1.0 -QU;Breakout VR v3+1.0 -QU/Breakout VR [1.0.3] S3.0.2.apk;com.nerdvisiongames.breakoutvr;3;1.0
CYBER TENNIS;CYBER TENNIS v152+1.6.4 -unknown;CYBER TENNIS v152+1.6.4 -unknown/CYBERTENNIS_for_Quest_1.6.4.apk;jp.co.techarts.cybertennis;152;1.6.4
Cake Mouse;Cake Mouse v5+0.23 -QU;Cake Mouse v5+0.23 -QU/CakeMouse [0.23.5] S3.0.2.apk;com.StudioHORANG.CakeMouseQuest;5;0.23
Captain Hardcore;Captain Hardcore v1+0.4 -VRP;Captain Hardcore v1+0.4 -VRP/Captain Hardcore 0.4.apk;com.AntiZeroGames.CH;1;1.0
Car Parking Simulator;Car Parking Simulator v9+1.6.3 -QU;Car Parking Simulator v9+1.6.3 -QU/Car Parking Simulator [1.6.3.9] S3.0.2.apk;com.sloppy.carparkingsimulator;9;1.6.3
Carly and the Reaperman;Carly and the Reaperman v122113212+1.22.113212 -QU;Carly and the Reaperman v122113212+1.22.113212 -QU/Carly and the Reaperman [1.22.113212] S3.0.2.apk;com.resolutiongames.catr.ovr.quest;122113212;1.22.113212
Carrolls Riddles;Carrolls Riddles v439+1.51 -QU;Carrolls Riddles v439+1.51 -QU/Carrolls Riddles - [1.51.439] S3.0.2.apk;com.sciencevr.carroll.quest;439;1.51
Carve Snowboarding;Carve Snowboarding v501+1.04 -QU;Carve Snowboarding v501+1.04 -QU/Carve Snowboarding [1.04.501] S3.0.2.apk;com.ViteiBackroom.Powder;501;1.04
Cat Dissection;Cat Dissection v1+1.0 -unknown;Cat Dissection v1+1.0 -unknown/CatDissection-Quest v1.0.apk;com.VictoryXR.CatDissection;1;1.0
Catan VR;Catan VR v11837+1.1.837 -QU;Catan VR v11837+1.1.837 -QU/Catan VR [1.1.837.11837] S3.0.2.apk;com.Experiment7.Aurora;11837;1.1.837
Cave Digger;Cave Digger v71+2.17 -QU;Cave Digger v71+2.17 -QU/Cave Digger [2.17.71] S3.0.2.apk;com.mekiwi.cavedigger;71;2.17
Chupa Chupa VR;Chupa Chupa VR v1+2.0 -VRP;Chupa Chupa VR v1+2.0 -VRP/ChupaChupaVR.apk;com.kan.kikuchi.ChupaChupaVR;1;2.0
Cirque du Soleil;Cirque du Soleil v1001017+1.01.17 -QU;Cirque du Soleil v1001017+1.01.17 -QU/Cirque du Soleil [1.01.17.1001017] S3.0.2.apk;com.felixandpaul.quest.cds_portal;1001017;1.01.17
City Avenger;City Avenger v2+1.0.1 -unknown;City Avenger v2+1.0.1 -unknown/CityAvenger_Quest_v1.0.1.apk;com.Chesstar.CityAvenger.itch;2;1.0.1
Cloudlands 2;Cloudlands 2 v35+1.31 -QU;Cloudlands 2 v35+1.31 -QU/Cloudlands 2 [1.31.35] S2.11.apk;com.Futuretown.Cloudlands2;35;1.31
Coaster Combat;Coaster Combat v708443+1.0 -QU;Coaster Combat v708443+1.0 -QU/Coaster Combat [1.0.708443] S3.0.2.apk;com.forcefieldxr.coastercombatquest;708443;1.0
Color Space;Color Space v316+1.5.3 -QU;Color Space v316+1.5.3 -QU/Color Space [1.5.3.316] S3.0.2.apk;us.lighthaus.colorspace;316;1.5.3
Colorball;Colorball v5+0.3.3 -QU;Colorball v5+0.3.3 -QU/Colorball [0.3.3.5] S3.0.2.apk;at.AppScore.Colorball;5;0.3.3
Contractors;Contractors v61+1.3 -QU;Contractors v61+1.3 -QU/Contractors ['1.3'.61] S3.0.2.apk;com.CaveManStudio.ContractorsVR;61;1.3
Control Tower VR;Control Tower VR v18+0.61 -unknown;Control Tower VR v18+0.61 -unknown/ControlTowerVR v0.61.apk;com.DigitalEmergence.ControlTower_Alpha;18;0.61
Cook-Out;Cook-Out v108112973+1.8.112973 -QU;Cook-Out v108112973+1.8.112973 -QU/Cook-Out [1.8.112973.108112973] S3.0.2.apk;com.resolutiongames.cookinggame;108112973;1.8.112973
Cosmic Sugar;Cosmic Sugar v5+3 -QU;Cosmic Sugar v5+3 -QU/Cosmic Sugar [3.5] S3.0.2.apk;com.LightClinic.CosmicSugar;5;3
Cosmodread;Cosmodread v10014+1.0.0.14 -QU;Cosmodread v10014+1.0.0.14 -QU/Cosmodread [1.0.0.14.10014] S3.0.2.apk;com.WhiteDoorGames.Cosmodread;10014;1.0.0.14
Counter Fight ICHIRAN;Counter Fight ICHIRAN v96+1.1.0_96;Counter Fight ICHIRAN v96+1.1.0_96/Counter Fight ICHIRAN [1.1.0_96] S3.0.2.apk;jp.tricol.IchiranVR;96;1.1.0_96
Counter Fight ICHIRAN;Counter Fight ICHIRAN v96+1.10 -QU;Counter Fight ICHIRAN v96+1.10 -QU/Counter Fight ICHIRAN v96+1.10 -QU.apk;jp.tricol.IchiranVR;96;1.1.0_96
Counter Fight;Counter Fight v1+1.5.0 -unknown;Counter Fight v1+1.5.0 -unknown/counterfight_quest v1.5.0.apk;jp.tricol.counterfight_for_quest;1;1.5.0
Cover Drive Cricket;Cover Drive Cricket v169+1.0.1 -QU;Cover Drive Cricket v169+1.0.1 -QU/Cover Drive Cricket [1.0.1.169] S3.0.2.apk;io.mphillips.CoverDriveCricket21;169;1.0.1
Crashland;Crashland v66+1.01;Crashland v66+1.01/Crashland [1.01.66] S3.0.2.apk;com.LACGames.Crashland;66;1.01
Crazy Croquet VR;Crazy Croquet VR v2+0.2 -QU;Crazy Croquet VR v2+0.2 -QU/Croquet VR [0.2] S3.0.2.apk;de.selfox.crazycroquet;2;0.2
Crazy Kung Fu;Crazy Kung Fu v5+0.63.10 -QU;Crazy Kung Fu v5+0.63.10 -QU/Crazy Kung Fu [0.63.10.5] S3.0.2.apk;com.fieldofvision.crazykungfu;5;0.63.10
Creed - Rise to Glory;Creed - Rise to Glory v247262+1 -QU;Creed - Rise to Glory v247262+1 -QU/Creed - Rise to Glory [1.247262] S3.0.2.apk;com.survios.Creed;247262;1
Crisis VRigade 2;Crisis VRigade 2 v55+1.17 -QU;Crisis VRigade 2 v55+1.17 -QU/Crisis VRigade 2 [1.17.55] S3.0.2.apk;com.sumalab.CrisisVRigade2;55;1.17
Crisis VRigade;Crisis VRigade v1+1.18 -VRP;Crisis VRigade v1+1.18 -VRP/Crisis VRigade v1+1.18 -VRP.apk;com.sumalab.CrisisVRigade;1;1.18
Crop Craze - VR Farming Simulator;Crop Craze - VR Farming Simulator v130+1.3.0 -VRP;Crop Craze - VR Farming Simulator v130+1.3.0 -VRP/Crop Craze - VR Farming Simulator v1.3.1 -VRP.apk;com.PicoPlanetDeveloping.FarmGame;130;1.3.0
Cubism;Cubism v91+1.2.7 -QU;Cubism v91+1.2.7 -QU/Cubism [1.2.7.91] S3.0.2.apk;com.tvb.cubism;91;1.2.7
Custom Home Mapper;Custom Home Mapper v1+0.1 -unknown;Custom Home Mapper v1+0.1 -unknown/Custom Home Mapper v2.3.apk;com.curiousvr.homespace;1;0.1
Cyber Cycle;Cyber Cycle v1+0.1 -unknown;Cyber Cycle v1+0.1 -unknown/Cyber_Cycle_Test_Bld v0.1.apk;com.syntheon.cc2;1;0.1
Cyber Tennis;Cyber Tennis v161+1.6.6 -QU;Cyber Tennis v161+1.6.6 -QU/CYBER TENNIS [1.6.6.161] S3.0.2.apk;jp.co.techarts.cybertennis;161;1.6.6
Dance Central;Dance Central v121011401+1.2.1 -QU (b);Dance Central v121011401+1.2.1 -QU (b)/Dance Central [1.2.1.121011401] S3.0.2.apk;com.HarmonixMusic.DCVRQuest;121011401;1.2.1
Dance Dance Maker;Dance Dance Maker v9+0.9 -unknown;Dance Dance Maker v9+0.9 -unknown/Dance Dance Maker_0.9_Patched.apk;com.novia.vr.ddm;9;0.9
David Slade Mysteries - Case Files;David Slade Mysteries - Case Files v11+2.5a -QU;David Slade Mysteries - Case Files v11+2.5a -QU/DSM - Case Files [2.5a.11] S3.0.2.apk;com.GearWorxProductions.DSMCaseFiles;11;2.5a
Dead Shot Heroes;Dead Shot Heroes v1+2.1.3 -unknown;Dead Shot Heroes v1+2.1.3 -unknown/Dead Shot Heroes v2.1.3.apk;com.omm.dsh;1;2.1.3
Dead and Buried II;Dead and Buried II v3008396+2.0.8396 -QU;Dead and Buried II v3008396+2.0.8396 -QU/Dead and Buried II [2.0.8396.3008396] S2.11.apk;com.oculus.dab2;3008396;2.0.8396
Death Horizon Reloaded;Death Horizon Reloaded v101+0.9.25.8 -QU;Death Horizon Reloaded v101+0.9.25.8 -QU/Death Horizon - Reloaded [0.9.25.8.101] S3.0.2.apk;com.dreamdev.deathhorizon.quest;101;0.9.25.8
Death Lap;Death Lap v936+9.36 -VRP;Death Lap v936+9.36 -VRP/Death Lap v936+9.36 -VRP.apk;com.ozwe.deathlap;936;9.36
Deep Water Solo Climbing;Deep Water Solo Climbing v1+0.1 -unknown;Deep Water Solo Climbing v1+0.1 -unknown/Deep Water Solo Climbing v0.1.0.apk;com.kecoproductions.DeepWaterSolo;1;0.1
Deisim;Deisim v48+1.33.2 -QU;Deisim v48+1.33.2 -QU/Deisim v48+1.33.2 -QU.apk;com.MyronSoftware.Deisim;48;1.33.2
Demeo;Demeo v102113053+1.2.113053 -QU;Demeo v102113053+1.2.113053 -QU/Demeo [1.2.113053.102113053] S3.0.2.apk;com.resolutiongames.demeo;102113053;1.2.113053
Descent Alps;Descent Alps v22+0.4.1 -QU;Descent Alps v22+0.4.1 -QU/DescentAlps [0.4.1.22] S3.0.2.apk;com.Sutur.DescentAlps;22;0.4.1
Directive Nine;Directive Nine v5+0.2.3 -QU;Directive Nine v5+0.2.3 -QU/DirectiveNine [0.2.3.5] S3.0.2.apk;com.rooftoppanda.directivenine;5;0.2.3
Disc Benders - Ace Run;Disc Benders - Ace Run v4+1.3.1 -QU;Disc Benders - Ace Run v4+1.3.1 -QU/Disc Benders - Ace Run [1.3.1.4] S3.0.2.apk;com.FreeFallStudios.DiscBenders;4;1.3.1
DiscGolfVR;DiscGolfVR v1+0.1 -unknown;DiscGolfVR v1+0.1 -unknown/DiscGolfVR v4.5.apk;com.AlexV.DiscGolfVR;1;0.1
Doctor Who The Edge of Time;Doctor Who The Edge of Time v368+368 -QU (b);Doctor Who The Edge of Time v368+368 -QU (b)/Doctor Who The Edge of Time [368] S3.0.2.apk;com.mazetheory.doctorwho;368;368
Dogfish Dessection;Dogfish Dessection v1+1.0 -unknown;Dogfish Dessection v1+1.0 -unknown/Dogfish_Dissection-Quest v1.0.apk;com.VictoryXR.DogfishDissection;1;1.0
Domino's Vice VR;Domino's Vice VR v1+1.0 -unknown;Domino's Vice VR v1+1.0 -unknown/Domino's Vice VR_1.0_Patched.apk;samsapps.games.dominovr;1;1.0
Doom3Quest;Doom3Quest v16+0.2.0 -DrBeef;Doom3Quest v16+0.2.0 -DrBeef/Doom3Quest.apk;com.drbeef.doom3quest;16;0.2.0
Down the Rabbit Hole;Down the Rabbit Hole v429+01.02 -QU;Down the Rabbit Hole v429+01.02 -QU/Down the Rabbit Hole [01.02.429] S3.0.2.apk;com.CortopiaStudios.DTRH;429;01.02
Dr. Zaney's Insane Labs;Dr. Zaney's Insane Labs v2+1.1 -QU;Dr. Zaney's Insane Labs v2+1.1 -QU/Dr. Zaneys Insane Labs - [1.1.2] S3.0.2.apk;com.GearWorxProductions.Dr.ZaneysInsaneLabs;2;1.1
DrakaVR;DrakaVR v1+1 -unknown;DrakaVR v1+1 -unknown/DrakaVR.apk;com.Questeroid.DrakaVR;1;1
Dreadhalls;Dreadhalls v10619+1.6.19 -QU;Dreadhalls v10619+1.6.19 -QU/Dreadhalls.[1.6.19.10619]_patched.apk;com.WhiteDoorGames.DreadhallsQuest;10619;1.6.19
DroneLight;DroneLight v1+0.1 -unknown;DroneLight v1+0.1 -unknown/DroneLight.apk;com.dronelight.map1;1;0.1
Drop Dead - Dual Strike Edition;Drop Dead - Dual Strike Edition v1724091000+1.3.7 -QU;Drop Dead - Dual Strike Edition v1724091000+1.3.7 -QU/Drop Dead - Dual Strike Edition [1.3.7.1724091000] S3.0.2.apk;com.PixelToys.DropDead;1724091000;1.3.7
Drunkn Bar Fight;Drunkn Bar Fight v121+10.21 -QU;Drunkn Bar Fight v121+10.21 -QU/Drunkn Bar Fight [10.21.121] S2.11.apk;com.themunky.drunknbarfightQuest;121;10.21
Dungeon Chess;Dungeon Chess v58+0.0.60 -unknown;Dungeon Chess v58+0.0.60 -unknown/Dungeon Chess v0.060.apk;com.Experiment7.RealDungeonChess;58;0.0.60
Dungeon Train;Dungeon Train v1+0.13.19 -unknown;Dungeon Train v1+0.13.19 -unknown/dungeonTrain v0.19.12.apk;com.brennanhatton.dungeontrain;1;0.13.19
ENHANCE VR;ENHANCE VR v31+2.0.0 -unknown;ENHANCE VR v31+2.0.0 -unknown/ENHANCE VR 2.0.0 Patched.apk;com.Virtuleap.Enhance;31;2.0.0
Electronauts;Electronauts v175667+175667 (b) -QU;Electronauts v175667+175667 (b) -QU/Electronauts [175667.175667] S3.0.2.apk;com.survios.Electronauts;175667;175667
Eleven Table Tennis;Eleven Table Tennis v642+1.642 -QU;Eleven Table Tennis v642+1.642 -QU/Eleven Table Tennis v642+1.642 -QU.apk;quest.eleven.forfunlabs;642;1.642
Elven Assassin;Elven Assassin v122+1.4.2c_OculusQuest -QU;Elven Assassin v122+1.4.2c_OculusQuest -QU/Elven Assassin [1.4.2c_OculusQuest.122] S3.0.2.apk;com.WenklyStudio.ElvenAssassin;122;1.4.2c_OculusQuest
End Space;End Space v26+1.0.6.1 -QU;End Space v26+1.0.6.1 -QU/End Space [1.0.6.1.26] S3.0.2.apk;com.endspace.quest;26;1.0.6.1
Energysaber Masta VR;Energysaber Masta VR v41+1.17 -QU;Energysaber Masta VR v41+1.17 -QU/Energysaber Masta VR [1.17.41] S3.0.2.apk;com.dreamteammobile.LightsaberMastaVR;41;1.17
Epic Roller Coasters;Epic Roller Coasters v5093+7.1.0 -QU;Epic Roller Coasters v5093+7.1.0 -QU/Epic Roller Coasters [7.1.0.5093] S3.0.2.apk;games.b4t.epicrollercoasters.oculus;5093;7.1.0
Escape Legacy;Escape Legacy v37+1.35 -QU;Escape Legacy v37+1.35 -QU/Escape Legacy [1.35.37] S3.0.2.apk;com.StormingTech.EscapeLegacySideQuest;37;1.35
Escape!;Escape! v2+1.01 -unknown;Escape! v2+1.01 -unknown/Escape v1.01.apk;com.Robbin12392.Escape;2;1.01
Espire 1 - VR Operative;Espire 1 - VR Operative v1600+1.8.47 -QU;Espire 1 - VR Operative v1600+1.8.47 -QU/Espire 1 - VR Operative [1.8.47.1600] S3.0.2.apk;com.DigitalLode.Espire1;1600;1.8.47
Evryway Visualiser;Evryway Visualiser v136+0.136 -QU;Evryway Visualiser v136+0.136 -QU/Evryway Visualiser [0.136]_clean.apk;com.evryway.visualiser.oal;136;0.136
Exorcist Legion VR;Exorcist Legion VR v27+1.0.9 -QU;Exorcist Legion VR v27+1.0.9 -QU/Exrcist_Legion v1.0.9.apk;com.wolfandwood.exorcistlegionvr;27;1.0.9
FREEDIVER - Triton Down;FREEDIVER - Triton Down v20+1.0 (b) -QU;FREEDIVER - Triton Down v20+1.0 (b) -QU/FREEDIVER - Triton Down [1.0.20] S3.0.2.apk;com.Archiact.Freediver;20;1.0
FREEDIVER - Triton Down;FREEDIVER - Triton Down v20+1.0 -QU;FREEDIVER - Triton Down v20+1.0 -QU/freediver lightly patched v1.0.apk;com.Archiact.Freediver;20;1.0
Face Your Fears 2;Face Your Fears 2 v487009+1.0.487009 (b) -QU;Face Your Fears 2 v487009+1.0.487009 (b) -QU/Face Your Fears 2 [1.0.487009.487009] S3.0.2.apk;gg.trs.fyf2;487009;1.0.487009
Face Your Fears 2;Face Your Fears 2 v487009+1.0.487009 -QU;Face Your Fears 2 v487009+1.0.487009 -QU/Face Your Fears 2 v1.0.487009.apk;gg.trs.fyf2;487009;1.0.487009
Fail Factory;Fail Factory v54+1.0 -QU;Fail Factory v54+1.0 -QU/Fail Factory [1.0.54] patch+savefix.apk;com.Armature.FailFactory;54;1.0
Falcon Age;Falcon Age v31+1.01 -QU;Falcon Age v31+1.01 -QU/Falcon Age [1.01.31] S3.0.2.apk;com.OuterloopGames.FalconAge;31;1.01
Faraday's Magnets;Faraday's Magnets v5+0.23 -unknown;Faraday's Magnets v5+0.23 -unknown/ScienceVR - Faraday's Magnets [0.23].apk;com.sciencevr.faraday.quest;5;0.23
Fast Formula;Fast Formula v1+1.0 -unknown;Fast Formula v1+1.0 -unknown/Fast Formula_1.0_Patched.apk;com.FastFormula.FastFormula;1;1.0
Fear Dead House;Fear Dead House v11+1.00 -QU;Fear Dead House v11+1.00 -QU/Fear Dead House [1.00.11] S3.0.2.apk;com.quest.tgs.vrghost;11;1.00
Fear Within;Fear Within v1+1.0 -unknown;Fear Within v1+1.0 -unknown/FearWithin1.0.0.2.apk;com.SAAPDigital.FearWithin;1;1.0
FigureOut VR;FigureOut VR v1+1.0 -QU;FigureOut VR v1+1.0 -QU/FigureOutVR [1.0] S3.0.2.apk;com.figureout.questvr;1;1.0
Fingers - Mini Games;Fingers - Mini Games v1+1.02 -unknown;Fingers - Mini Games v1+1.02 -unknown/Fingers - Mini Games v1.02.apk;com.dedm0zaj.FingersMiniGames;1;1.02
Five Nights at Freddys - Help Wanted;Five Nights at Freddys - Help Wanted v219+1.0.6 -QU;Five Nights at Freddys - Help Wanted v219+1.0.6 -QU/Five Nights at Freddys - Help Wanted [1.0.6.219] + DLCunlocker S3.0.2.apk;com.SteelWoolGames.fnafhw;219;1.0.6
Flappy Flappy VR;Flappy Flappy VR v3+1.0 -unknown;Flappy Flappy VR v3+1.0 -unknown/Flappy Flappy VR v1.0.apk;com.FlappyFlappyVR.www.VRmoo.cn;3;1.0
Floor Plan 2;Floor Plan 2 v125+1.0.2.7 -QU;Floor Plan 2 v125+1.0.2.7 -QU/Floor Plan 2 [1.0.2.7.125] S3.0.2.apk;com.turbobutton.fp2;125;1.0.2.7
Flow Weaver;Flow Weaver v46+1.1.0 -QU;Flow Weaver v46+1.1.0 -QU/Flow Weaver [1.1.0.46] S3.0.2.apk;ca.StitchMedia.FlowWeaver;46;1.1.0
Flowborne - Breathing Meditation;Flowborne - Breathing Meditation v38+1.00 -QU;Flowborne - Breathing Meditation v38+1.00 -QU/Flowborne VR [1.00.38] S3.0.2.apk;com.vunderwelten.flowbornevr;38;1.00
Fly XR;Fly XR v1+0.01b -unknown;Fly XR v1+0.01b -unknown/Fly XRv14 [0.01b].apk;com.PlayHop.FlyXR;1;0.01b
Food Flinger;Food Flinger v1+1.0 -unknown;Food Flinger v1+1.0 -unknown/FoodFlinger.apk;com.DashingCape.FoodFlinger;1;1.0
ForeVR Bowl;ForeVR Bowl v215+1.0 -QU;ForeVR Bowl v215+1.0 -QU/ForeVR Bowl v215+1.0 -QU.apk;com.forevr.bowling;215;1.0.215
Forklift Simulator;Forklift Simulator v6+1.0.6 -VRP;Forklift Simulator v6+1.0.6 -VRP/forklift-simulator-beta [1.0.6].apk;com.Chalkbites.ForkliftSimulatorQuest;6;1.0.6
Frog Dissection;Frog Dissection v1+1.0 -unknown;Frog Dissection v1+1.0 -unknown/FrogDissection-Quest.apk;com.VictoryXR.FrogDissectionQuest;1;1.0
Fruit Ninja;Fruit Ninja v547288+1.7.0.547288 -QU;Fruit Ninja v547288+1.7.0.547288 -QU/Fruit Ninja [1.7.0.547288] patch+savefix.apk;com.halfbrick.fruitninjavr;547288;1.7.0.547288
Fujii;Fujii v825+1.0 -QU (b);Fujii v825+1.0 -QU (b)/Fujii [1.0.825] S3.0.2.apk;com.funktroniclabs.fuji;825;1.0
Fun House;Fun House v2+1.1 -QU;Fun House v2+1.1 -QU/Fun House v2+1.1 -QU.apk;com.fairview.funhouse;2;1.1
Futbolin Revolution;Futbolin Revolution v1+0.1 -unknown;Futbolin Revolution v1+0.1 -unknown/Futbolín Revolution 1.0 Patched.apk;com.Pixelfun.FutbolinRevolution;1;0.1
GORN;GORN v1906+1.2.1906 -QU;GORN v1906+1.2.1906 -QU/GORN [1.2.1906] S3.0.2.apk;com.freelives.gorn;1906;1.2.1906
Gadgeteer;Gadgeteer v79+1.0.17 -QU;Gadgeteer v79+1.0.17 -QU/Gadgeteer [1.0.17.79] S3.0.2.apk;com.metanaut.Gadgeteer;79;1.0.17
Ghost Giant;Ghost Giant v32+1.0.32 -QU;Ghost Giant v32+1.0.32 -QU/Ghost Giant [1.0.32] patch+savefix.apk;com.zoink.ghostgiant;32;1.0.32
Gladiatus;Gladiatus v2+1.0 -QU;Gladiatus v2+1.0 -QU/Gladiatus v2+1.0 -QU.apk;com.varonia.gladiatus;2;1.0
Gladius;Gladius v7+1.0 -VRP;Gladius v7+1.0 -VRP/Gladius v7 VRP.apk;com.VirtualAge.GladiusQuest;7;1.0
Glitch Assassin;Glitch Assassin v1+1.0 -unknown;Glitch Assassin v1+1.0 -unknown/Glitch Assassin v1.0.apk;com.LoneWolfInteractive.GlitchAssassin;1;1.0
Gloomy Eyes;Gloomy Eyes v33+33 -QU;Gloomy Eyes v33+33 -QU/Gloomy Eyes 33 Patched.apk;com.arte.gloomy_eyes;33;33
Gravity Lab;Gravity Lab v95+1.14.0 -QU;Gravity Lab v95+1.14.0 -QU/Gravity Lab [1.14.0.95] S3.0.2.apk;com.markschramm.gravitylab;95;1.14.0
Guided Tai Chi;Guided Tai Chi v1235+1.2.35 -unknown;Guided Tai Chi v1235+1.2.35 -unknown/Guided Tai Chi [1.2.35] patch+savefix+90Hz.apk;com.CubicleNinjas.GuidedTaiChi;1235;1.2.35
Gun Club VR;Gun Club VR v228+1.1.82 -QU;Gun Club VR v228+1.1.82 -QU/Gun Club VR [1.1.82.228] S2.11.apk;com.nextgenreality.GunClubVR;228;1.1.82
GunSpinning VR;GunSpinning VR v1+2.0 -unknown;GunSpinning VR v1+2.0 -unknown/GunSpinning VR1.0_Patched.apk;net.demonixis.gunspinningvr;1;2.0
Guns'n'Stories - Bulletproof VR;Guns'n'Stories - Bulletproof VR v155+1.0 (b) -QU;Guns'n'Stories - Bulletproof VR v155+1.0 (b) -QU/GunsnStories - Bulletproof VR [1.0.155] S3.0.2.apk;com.MiroWin.OMT;155;1.0
Half-Life 1 VR;Half-Life 1 VR v23+1.4.5 -DrBeef (with assets, manual install);Half-Life 1 VR v23+1.4.5 -DrBeef (with assets, manual install)/HalfLifeVR.apk;com.drbeef.lambda1vr;23;1.4.5
Hand Physics Lab;Hand Physics Lab v248+1.1.0.0102 -QU;Hand Physics Lab v248+1.1.0.0102 -QU/Hand Physics Lab v248+1.1.0.0102 -QU.apk;com.holonautic.HandPhysicsLab;248;1.1.0.0102
Hand Spell;Hand Spell v1+1.00 -QU;Hand Spell v1+1.00 -QU/Hand Spell [1.00] S3.0.2.apk;com.kosmiq.handspell;1;1.00
Hatsune Miku VR;Hatsune Miku VR v10+3.01 -QU (with DLC);Hatsune Miku VR v10+3.01 -QU (with DLC)/Hatsune Miku VR [3.01.10] S2.11 + DLC Unlocked.apk;jp.co.crypton.mikuvrq;10;3.01
Hermetika VR;Hermetika VR v6+0.6 -unknown;Hermetika VR v6+0.6 -unknown/HermetikaVR.apk;am.benth.hermetikavr;6;0.6
HeroBound 2;HeroBound 2 v8+1.5.1 -unknown;HeroBound 2 v8+1.5.1 -unknown/HeroBound 2.apk;com.oculus.herobound2;8;1.5.1
Holopoint;Holopoint v123+R1.0.14 -QU;Holopoint v123+R1.0.14 -QU/Holopoint [R1.0.14.123] S2.10.apk;com.AlzanStudios.HPPortable;123;R1.0.14
Home Plate Baseball;Home Plate Baseball v42+4.2 -QU;Home Plate Baseball v42+4.2 -QU/Home Plate Baseball [4.2.42] S3.0.2.apk;com.Beep2Bleep.HomePlateBaseball;42;4.2
Homestar VR - Special Edition;Homestar VR - Special Edition v41+1.03 -QU;Homestar VR - Special Edition v41+1.03 -QU/Homestar VR - Special Edition [1.03.41] S3.0.2.apk;com.pocket.homestarvrsp;41;1.03
Homestar VR;Homestar VR v64+1.32 -QU;Homestar VR v64+1.32 -QU/Homestar VR 1.32 Patched.apk;com.pocket.homestarvr;64;1.32
Hoops Madness;Hoops Madness v5+1.0.0 -QU;Hoops Madness v5+1.0.0 -QU/Hoops Madness [1.0.0.5] S3.0.2.apk;com.VRstudios.HoopsMadness;5;1.0.0
House Of Languages;House Of Languages v14+3.3.3 -unknown;House Of Languages v14+3.3.3 -unknown/House Of Languages_3.3.3_v14.apk;com.Fox3DGames.HouseOfLanguages;14;3.3.3
HouseFlipper VR;HouseFlipper VR v86+8.6 -QU;HouseFlipper VR v86+8.6 -QU/HouseFlipper VR [8.6.86] S3.0.2.apk;com.oculus.HouseFlipperVR;86;8.6
Hyper Dash;Hyper Dash v273+1.16.5 -QU;Hyper Dash v273+1.16.5 -QU/Hyper Dash [1.16.5.273] S3.0.2.apk;com.TriangleFactory.HyperDash;273;1.16.5
Hyper Dash;Hyper Dash v274+1.16.5 -QU;Hyper Dash v274+1.16.5 -QU/Hyper Dash [1.16.5.274] S3.0.2.apk;com.TriangleFactory.HyperDash;274;1.16.5
Hyperstacks;Hyperstacks v7+Alpha 0.6.13 -QU;Hyperstacks v7+Alpha 0.6.13 -QU/Hyperstacks [Alpha 0.6.13.7]_clean.apk;com.SquirrelBytes.Hyperstacks;7;Alpha 0.6.13
I Expect You to Die;I Expect You to Die v41516+1.0.141516 -QU;I Expect You to Die v41516+1.0.141516 -QU/I Expect You To Die [1.0.141516] patch+savefix.apk;com.schellgames.ieytdquest;41516;1.0.141516
Imercyve - Living with Intellectual Disability;Imercyve - Living with Intellectual Disability v19+1.0 -QU;Imercyve - Living with Intellectual Disability v19+1.0 -QU/Imercyve - Living with Intellectual Disability [1.0.19] S3.0.2.apk;com.VGH.ID;19;1.0
In Death - Unchained;In Death - Unchained v41945299+1.3.15 -QU;In Death - Unchained v41945299+1.3.15 -QU/In Death - Unchained [1.3.15.41945299] S3.0.2.apk;com.Solfar.InDeath;41945299;1.3.15
Ironlights;Ironlights v142+142 -QU;Ironlights v142+142 -QU/Ironlights [142] S3.0.2.apk;com.emcneill.Ironlights;142;142
Jigsaw 360;Jigsaw 360 v63+3.1.6 -QU;Jigsaw 360 v63+3.1.6 -QU/Jigsaw 360 [3.1.6.63] S3.0.2.apk;com.JumbliVR.Jigsaw360;63;3.1.6
Jigsaw Puzzle VR;Jigsaw Puzzle VR v20+1.04 -QU;Jigsaw Puzzle VR v20+1.04 -QU/JigsawPuzzleVR [1.04.20] S3.0.2.apk;com.Marrsbiz.JigsawPuzzleVR;20;1.04
Job Simulator;Job Simulator v36+1.4.0.4665 -QU;Job Simulator v36+1.4.0.4665 -QU/Job Simulator [1.4.0.4665.36] S2.10.apk;com.owlchemylabs.jobsimulator;36;1.4.0.4665
Journey Of The Gods;Journey Of The Gods v479431+1.0.479431 -QU;Journey Of The Gods v479431+1.0.479431 -QU/Journey Of The Gods [1.0.479431] patch+savefix+90Hz.apk;gg.trs.grappa;479431;1.0.479431
Jurassic World Aftermath;Jurassic World Aftermath v23258+v1.3 -QU;Jurassic World Aftermath v23258+v1.3 -QU/Jurassic World Aftermath [v1.3.23258] S3.0.2.apk;com.coatsink.alone;23258;v1.3
Just Drive;Just Drive v1+1.0 -unknown;Just Drive v1+1.0 -unknown/Just Drive [1.0].apk;com.JustDrive.JustDrive;1;1.0
KOTC VR Basketball;KOTC VR Basketball v1+0.1 -unknown;KOTC VR Basketball v1+0.1 -unknown/《KOTC VR Basketball》1.0_Patched_.apk;com.millennialdave.kotcvrbball;1;0.1
Keep Talking and Nobody Explodes;Keep Talking and Nobody Explodes v59+1.9.22 -QU;Keep Talking and Nobody Explodes v59+1.9.22 -QU/Keep Talking and Nobody Explodes [1.9.22.59] S2.10.apk;com.steelcrategames.keeptalkingandnobodyexplodes;59;1.9.22
Kid Setas;Kid Setas v1+0.1 -unknown;Kid Setas v1+0.1 -unknown/Kid Setas 0.1 Patched.apk;com.realdragonvr.setas;1;0.1
Kingdom of Blades;Kingdom of Blades v1+1.0.0 -unknown;Kingdom of Blades v1+1.0.0 -unknown/Kingdom of Blades 0330_Patched.apk;com.chesstar.KingdomOfBlades.itch;1;1.0.0
Kingspray Graffiti;Kingspray Graffiti v725+71.5 (b) -QU;Kingspray Graffiti v725+71.5 (b) -QU/Kingspray Graffiti [71.5.725] S3.0.2.apk;com.infectiousape.kingspray;725;71.5
Kingspray Graffiti;Kingspray Graffiti v725+71.5 -VRP (save issue);Kingspray Graffiti v725+71.5 -VRP (save issue)/Kingspray Graffiti [v71.5-725] -VRP.apk;com.infectiousape.kingspray;725;71.5
KitchenIslandVR;KitchenIslandVR v2+0 -QU;KitchenIslandVR v2+0 -QU/KitchenIslandVR v2+0 -QU.apk;com.VRBuddyGames.KitchenIslandVR;2;0.2
Knockout League;Knockout League v34+1.0 -QU;Knockout League v34+1.0 -QU/Knockout League [1.0.34] S3.0.2.apk;com.grab.knockout;34;1.0
Laid-Back Camp - Virtual - Lake Motosu;Laid-Back Camp - Virtual - Lake Motosu v3+1.0.0 -VRP;Laid-Back Camp - Virtual - Lake Motosu v3+1.0.0 -VRP/Laid-Back Camp - Virtual - Lake Motosu v3+1.0.0 -VRP.apk;jp.co.gemdrops.lbca_q;3;1.0.0
Laser Blaze;Laser Blaze v1+1.0.0 -unknown;Laser Blaze v1+1.0.0 -unknown/Laser Blaze 1.0 Patched.apk;cz.bkral.LaserBlaze;1;1.0.0
Last Labyrinth;Last Labyrinth v34+1.02 -QU;Last Labyrinth v34+1.02 -QU/Last Labyrinth [1.02.34] patch+savefix+90Hz+CustomRes.apk;jp.co.amata.lastlabyrinth;34;1.02
Layers of Fear VR;Layers of Fear VR v36+2.0 -QU;Layers of Fear VR v36+2.0 -QU/Layers of Fear VR [2.0.36] S3.0.2.apk;com.bloober.layersoffearvr;36;2.0
Legendary Hunter VR;Legendary Hunter VR v2+1.21 -QU;Legendary Hunter VR v2+1.21 -QU/Legendary Hunter VR [1.21] S3.0.2.apk;com.FrozenDreams.legendaryhuntervr;2;1.21
Let's Go Chopping;Let's Go Chopping v2+.2 -unknown;Let's Go Chopping v2+.2 -unknown/LetsGoChoppingEAv2PAID.apk;com.SoaringRocStudio.LetsGoChopping;2;.2
Let's Play with Anna!;Let's Play with Anna! v1+1.0 -unknown;Let's Play with Anna! v1+1.0 -unknown/anna_quest_uncensored.apk;com.vrjcc.AnnaU;1;1.0
Lets Create! Pottery VR;Lets Create! Pottery VR v670+1.12 -QU;Lets Create! Pottery VR v670+1.12 -QU/Lets Create! Pottery VR [1.12.670] S3.0.2.apk;com.idreams.potteryvrq;670;1.12
Lies Beneath;Lies Beneath v55578+1.0-55578 -QU;Lies Beneath v55578+1.0-55578 -QU/Lies Beneath [1.0-55578.55578] S3.0.2.apk;com.Drifter.Kodiak;55578;1.0-55578
Little Witch Academia - VR Broom Racing;Little Witch Academia - VR Broom Racing v707+1.2.0 -QU;Little Witch Academia - VR Broom Racing v707+1.2.0 -QU/Little Witch Academia - VR Broom Racing [1.2.0.707] S2.11.apk;com.UNIVRS.LWAVR;707;1.2.0
LoopSpace;LoopSpace v11+0.9.3 -QU;LoopSpace v11+0.9.3 -QU/LoopSpace v11+0.9.3 -QU.apk;com.Chesstar.LoopSpace.Quest;11;0.9.3
Luna;Luna v8+8 -QU;Luna v8+8 -QU/Luna [8] S3.0.2.apk;com.funomena.luna;8;8
Mare;Mare v31+31 -QU;Mare v31+31 -QU/Mare [31] S3.0.2.apk;com.VisionTrick.Mare;31;31
MarineVerse Cup;MarineVerse Cup v289+0.289 -unknown;MarineVerse Cup v289+0.289 -unknown/MarineVerse Cup [0.289].apk;com.marineverse.cup;289;0.289
Mini Motor Racing X;Mini Motor Racing X v124+1.3.5 -QU;Mini Motor Racing X v124+1.3.5 -QU/Mini Motor Racing X [1.3.5.124] S3.0.2.apk;com.nextgenreality.mmrx;124;1.3.5
Monolith;Monolith v1+0.1 -unknown;Monolith v1+0.1 -unknown/Monolith v0.1.apk;com.n.monolith;1;0.1
Moss;Moss v22600+1.0.0.22600 -Q2Patched-90Hz-CustomRes -QU;Moss v22600+1.0.0.22600 -Q2Patched-90Hz-CustomRes -QU/Moss [1.0.0.22600] patch+savefix+90Hz+CustomRes.apk;com.polyarc.MossGame;22600;1.0.0.22600
Mr. Scribbles;Mr. Scribbles v1+0.1 -unknown;Mr. Scribbles v1+0.1 -unknown/Mr. Scribbles v0.0.10.apk;com.oculus.mrscribbles;1;0.1
Mutated Virus;Mutated Virus v2+2.1 -VRP;Mutated Virus v2+2.1 -VRP/MutatedVirus[2.1].apk;com.AnomosStudios.MutatedVirus;2;2.1
Myst;Myst v264+1.0.2 -QU;Myst v264+1.0.2 -QU/Myst [1.0.2.264] S3.0.2.apk;com.CyanWorlds.Myst;264;1.0.2
Myth - A Frozen Tale;Myth - A Frozen Tale v31+1.0 -QU;Myth - A Frozen Tale v31+1.0 -QU/Myth - A Frozen Tale ['1.0'.31] S3.0.2.apk;com.WaltDisney.MythAFrozenTale;31;1.0
NES Space Quest;NES Space Quest v3+1.0.2 -unknown;NES Space Quest v3+1.0.2 -unknown/NesVR_OculusQuest_Itch_V1.0.2_EndlessCoins.Patched.apk;com.Chesstar.NesVR.QuestItch;3;1.0.2
National Geographic Explore VR;National Geographic Explore VR v674692+1.2.1 -VRP;National Geographic Explore VR v674692+1.2.1 -VRP/National Geographic Explore VR v1.2.1-674692 -VRP.apk;com.forcefieldxr.explorevr;674692;1.2.1
Nature Treks VR;Nature Treks VR v20+1.21 -QU;Nature Treks VR v20+1.21 -QU/Nature Treks VR [1.21.20] S2.11.apk;com.GreenerGames.QuestTreks;20;1.21
Neon Sprint;Neon Sprint v17+1.0.4 -QU;Neon Sprint v17+1.0.4 -QU/Neon Sprint v17+1.0.4 -QU.apk;com.chesstar.NeonSprint.Quest;17;1.0.4
Ninja Legends;Ninja Legends v1084+1.0.1084 -QU;Ninja Legends v1084+1.0.1084 -QU/Ninja Legends [1.0.1084] S3.0.2.apk;com.coinflip.ninja;1084;1.0.1084
Ocean Rift;Ocean Rift v55+1.68 -Q2Patched-90Hz -QU;Ocean Rift v55+1.68 -Q2Patched-90Hz -QU/Ocean Rift [1.68] patch+savefix+90Hz.apk;com.picselica.OceanRiftFullQuest;55;1.68
OceanCraft;OceanCraft v29+v0.3.10 -QU;OceanCraft v29+v0.3.10 -QU/OceanCraft [v0.3.10.29] S3.0.2.apk;com.FlodLab.OceanCraft;29;v0.3.10
OhShape;OhShape v185+1.8.5;OhShape v185+1.8.5/OhShape [1.8.5.185] S3.0.2.apk;com.odders.ohshape;185;1.8.5
Omega Blade;Omega Blade v1203+1.2.0 -QU;Omega Blade v1203+1.2.0 -QU/Omega Blade [1.2.0.1203] S3.0.2.apk;com.paramogames.omegablade;1203;1.2.0
OnStage Simulator;OnStage Simulator v1+0.72 -unknown;OnStage Simulator v1+0.72 -unknown/OnStage Simulator v0.7.2.apk;com.COMPOS3D.OnStage;1;0.72
Onward;Onward v9666+1.0 -QU;Onward v9666+1.0 -QU/Onward [1.0.9666] S3.0.2.apk;com.downpourinteractive.onward;9666;1.0
Operation Serpens;Operation Serpens v210312+1.2103.12 -QU;Operation Serpens v210312+1.2103.12 -QU/Operation Serpens [1.2103.12.210312] S3.0.2.apk;com.GINRATECH.OPERATIONSERPENS;210312;1.2103.12
Oxygen Dreams;Oxygen Dreams v7+1.06 -QU;Oxygen Dreams v7+1.06 -QU/OxygenDreamsQuest [1.06.7] S3.0.2.apk;com.Fguillotine.OxygenDreamsQuest;7;1.06
Painting VR;Painting VR v8+0.2 -QU;Painting VR v8+0.2 -QU/PaintingVr [0.2.8] S3.0.2.apk;com.Oisoi.PaintingVr;8;0.2
Pandemic by Prisms;Pandemic by Prisms v180+0.5.61 -QU;Pandemic by Prisms v180+0.5.61 -QU/PrismsPandemic [0.5.61.180] S3.0.2.apk;com.prismsvr.pandemicbyprisms;180;0.5.61
Pangman;Pangman v11+1.1 -unknown;Pangman v11+1.1 -unknown/Pangman_1.1_Patched.apk;com.ivanovichgames.pangman;11;1.1
Paper Birds;Paper Birds v47+1 -QU;Paper Birds v47+1 -QU/Paper Birds [1.47] S2.11.apk;com.ThreeDAR.PaperBirdsQuest;47;1
Path Of The Warrior;Path Of The Warrior v495+20.01.14.356019 -QU;Path Of The Warrior v495+20.01.14.356019 -QU/Path of the Warrior [20.01.14.356019]_patched.apk;com.twistedpixelgames.POTW_App;495;20.01.14.356019
PePiBo - Peregrino Pinata Bowling;PePiBo - Peregrino Pinata Bowling v2+2 -QU;PePiBo - Peregrino Pinata Bowling v2+2 -QU/PePiBo [2] S3.0.2.apk;com.toritogames.pepibo;2;2
PecoPeco;PecoPeco v6011+0.6.11 -QU;PecoPeco v6011+0.6.11 -QU/PecoPeco [0.6.11.6011] S3.0.2.apk;am.benth.pecopeco;6011;0.6.11
Penn & Teller VR - F U, U, U, & U;Penn & Teller VR - F U, U, U, & U v1960571+1.0 -QU (b);Penn & Teller VR - F U, U, U, & U v1960571+1.0 -QU (b)/Penn & Teller VR - F U, U, U, & U [1.0.1960571] S3.0.2.apk;com.GearboxSoftware.Hawthorn;1960571;1.0
Percussive VR;Percussive VR v2+1.4 -QU;Percussive VR v2+1.4 -QU/Percussive VR [1.4.2] S3.0.2.apk;games.jamhack.PercussiveVR.Oculus;2;1.4
Perpetuum Mobile;Perpetuum Mobile v83+1.5.6 -QU;Perpetuum Mobile v83+1.5.6 -QU/PerpetuumMobile VR [1.5.6.83] S3.0.2.apk;be.PetrusGames.PerpetuumMobile;83;1.5.6
Phantom - Covert Ops;Phantom - Covert Ops v49563+1.1 -QU;Phantom - Covert Ops v49563+1.1 -QU/Phantom - Covert Ops [1.1.49563] S3.0.2.apk;com.nDreams.PhantomQuest;49563;1.1
PhysHand;PhysHand v2+0.1.1 -unknown;PhysHand v2+0.1.1 -unknown/PhysHand v0.1.apk;com.JorgeJGnz.PhysHand;2;0.1.1
Pig Dissection;Pig Dissection v1+1.0 -unknown;Pig Dissection v1+1.0 -unknown/PigDissection-Quest.apk;com.VictoryXR.PigDissection;1;1.0
Pigasus VR Media Player;Pigasus VR Media Player v78+3.4 -QU;Pigasus VR Media Player v78+3.4 -QU/Pigasus VR Media Player [3.4.78].apk;com.hanginghatstudios.pigasus;78;3.4
Pinball FX2 VR;Pinball FX2 VR v15+1.0.0 -QU;Pinball FX2 VR v15+1.0.0 -QU/Pinball-FX2-VR- 1.0.0.15 -patched.apk;com.zenstudios.PinballFX2VRQuest;15;1.0.0
Pipe Dream Co.;Pipe Dream Co. v5+1.11.50 -QU;Pipe Dream Co. v5+1.11.50 -QU/Pipe Dream Co. [1.11.50] S3.0.2.apk;com.FieldOfVision.PipeDreamCo;5;1.11.50
Pistol Whip;Pistol Whip v418+0.6.26.94 -QU;Pistol Whip v418+0.6.26.94 -QU/Pistol Whip [0.6.26.94.418] S2.11.apk;com.cloudheadgames.pistolwhip;418;0.6.26.94
Pixel Ripped 1995;Pixel Ripped 1995 v108+108 -QU;Pixel Ripped 1995 v108+108 -QU/Pixel Ripped 1995 [108] S3.0.2.apk;io.arvore.pixelripped1995;108;108
Please, Don't Touch Anything;Please, Don't Touch Anything v1312+2.1 -unknown;Please, Don't Touch Anything v1312+2.1 -unknown/Dont Touch Anything [2.1.1312].apk;com.ForwardXP.nuke;1312;2.1
Pop Shot;Pop Shot v1+1.0 -unknown;Pop Shot v1+1.0 -unknown/Pop Shot 1.0 Patched.apk;com.PixelBoogie.PopShotQuest;1;1.0
Prison Boss VR;Prison Boss VR v37+1.6.0.16 -QU;Prison Boss VR v37+1.6.0.16 -QU/Prison Boss VR [1.6.0.16.37] S2.11.apk;com.Trebuchet.PrisonBossVR;37;1.6.0.16
Private Agent;Private Agent v5+1.3 -QU;Private Agent v5+1.3 -QU/Private Agent [_1.3_.5] S3.0.2.apk;com.Nottie.PrivateAgent;5;1.3
ProjectZ;ProjectZ v45+1.1.0 -QU;ProjectZ v45+1.1.0 -QU/ProjectZ [1.1.0.45] L3.0.2.apk;com.slindev.projectz;45;1.1.0
Pteranodon's Flight;Pteranodon's Flight v1+1.0 -unknown;Pteranodon's Flight v1+1.0 -unknown/PF Quest.apk;com.VictoryXR.PteranodonsFlight;1;1.0
Pub Darts;Pub Darts v200002+1.0 -QU;Pub Darts v200002+1.0 -QU/Pub Darts [1.0.200002] S3.0.2.apk;com.Ardooly.PubDarts;200002;1.0
Puzzle Bobble VR - Vacation Odyssey;Puzzle Bobble VR - Vacation Odyssey v247407+1.0 -QU;Puzzle Bobble VR - Vacation Odyssey v247407+1.0 -QU/Puzzle Bobble VR - Vacation Odyssey [1.0.247407] S3.0.2.apk;com.survios.bam;247407;1.0
Puzzling Places;Puzzling Places v2+1.0 -unknown;Puzzling Places v2+1.0 -unknown/Puzzling Places v1.0.1.apk;com.RealitiesIO.puzzlingPlacesPrototype;2;1.0
Quest for Runia;Quest for Runia v13+1.0 -QU;Quest for Runia v13+1.0 -QU/QuestForRunia [1.0.13] S3.0.2.apk;com.Cykyria.QuestForRunia;13;1.0
QuestZDoom Pack launcher;QuestZDoom Pack launcher v1+1.0.3 -VRP (install this too);QuestZDoom Pack launcher v1+1.0.3 -VRP (install this too)/questzdoom_launcher_1.03.apk;com.Baggyg.QuestZDoom_Launcher;1;1.0.3
QuestZDoom Pack;QuestZDoom Pack v25+1.1.7 -VRP;QuestZDoom Pack v25+1.1.7 -VRP/questzdoom-1.1.7.apk;com.drbeef.questzdoom;25;1.1.7
RESONARK X LITE;RESONARK X LITE v10100002+1.0.1b -QU;RESONARK X LITE v10100002+1.0.1b -QU/ResonarkXLite [1.0.1b.10100002] S3.0.2.apk;com.sepnekoya.ResonarkXLite;10100002;1.0.1b
RUSH;RUSH v282+1.2.1 -VRP;RUSH v282+1.2.1 -VRP/Rush v23+1.2.1 -VRP.apk;com.nextgenreality.rush;282;1.2.1
Raccoon Lagoon;Raccoon Lagoon v235238+1.0 -QU (b);Raccoon Lagoon v235238+1.0 -QU (b)/Raccoon Lagoon [1.0.235238] S3.0.2.apk;com.hiddenpath.phoenix;235238;1.0
Racket - NX;Racket - NX v122+2.2.14 -QU;Racket - NX v122+2.2.14 -QU/Racket - Nx [2.2.14.122] S3.0.2.apk;com.onehamsa.RNXQ;122;2.2.14
Racket Fury - Table Tennis VR;Racket Fury - Table Tennis VR v712+7.1.2 -QU;Racket Fury - Table Tennis VR v712+7.1.2 -QU/Racket Fury - Table Tennis VR [7.1.2.712] S3.0.2.apk;com.RacketFury.RF_GearVR;712;7.1.2
Radial-G - Proteus;Radial-G - Proteus v29+0.1 -QU;Radial-G - Proteus v29+0.1 -QU/Radial-G - Proteus [0.1.29] S3.0.2.apk;com.Things3D.RadialGProteus;29;0.1
Range Day VR;Range Day VR v14+1.18 -QU;Range Day VR v14+1.18 -QU/RangeDay VR [1.18.14] S3.0.2.apk;com.InvidiousStudios.RangedayVRQ;14;1.18
Real Fit VR;Real Fit VR v23+2021.3.1615462334 -QU;Real Fit VR v23+2021.3.1615462334 -QU/Real Fit VR [2021.3.1615462334] S3.0.2.apk;co.realfit.RealFit;23;2021.3.1615462334
Real VR Fishing;Real VR Fishing v109+1.518 -QU;Real VR Fishing v109+1.518 -QU/Real VR Fishing [1.518.109] S3.0.2.apk;com.Miragesoft.RealVrFishingQ;109;1.518
RealFit;RealFit v1+0.1 -VRP;RealFit v1+0.1 -VRP/realfit-quest-halloween-2020-10-29 v1+0.1 -VRP.apk;co.realfit.RealFit;1;0.1
Realms of Eternity;Realms of Eternity v1+0.5.7 -unknown;Realms of Eternity v1+0.5.7 -unknown/Realms Of Eternity v0.5.7.apk;com.VRKemono.RealmsofEternity;1;0.5.7
Red Matter;Red Matter v32+1.0.009 -Q2Patched-90Hz -QU;Red Matter v32+1.0.009 -Q2Patched-90Hz -QU/Red Matter [1.0.009] patch+savefix+90Hz.apk;com.VerticalRobot.RedMatter;32;1.0.009
Reflex Unit 2;Reflex Unit 2 v405+4.3 -QU;Reflex Unit 2 v405+4.3 -QU/Reflex Unit 2 [4.3.405] S3.0.2.apk;com.robosarugames.reflexunit2Lab;405;4.3
Refuge VR;Refuge VR v1+0.1 -unknown;Refuge VR v1+0.1 -unknown/Refuge.VR.apk;com.Meditation.RefugeVRv1;1;0.1
Resilience;Resilience v20+1.0.8042 -QU;Resilience v20+1.0.8042 -QU/Resilience 1.0.v8042.20+1.0 -QU.apk;com.scale1.resilience;20;1.0.8042
Rest In Pieces;Rest In Pieces v37+1.35 -QU;Rest In Pieces v37+1.35 -QU/RIP [1.35.37] S3.0.2.apk;com.StormingTech.RestInPiecesSQ;37;1.35
Return to Castle Wolfenstein;Return to Castle Wolfenstein v45+1.1.7 -DrBeef;Return to Castle Wolfenstein v45+1.1.7 -DrBeef/rtcwquest-v1.1.7.apk;com.drbeef.rtcwquest;45;1.1.7
Revolver Widow;Revolver Widow v3+1.2 -QU;Revolver Widow v3+1.2 -QU/Revolver Widow [1.2.3] S3.0.2.apk;com.StudioPoncho.Pinkertons;3;1.2
Rez Infinite;Rez Infinite v41+41.0 -unknown;Rez Infinite v41+41.0 -unknown/Rez Infinite [41.0] patched.apk;com.enhanceexperience.rezquest;41;41.0
Rhythm 'n Bullets;Rhythm 'n Bullets v18+1.10 -QU;Rhythm 'n Bullets v18+1.10 -QU/Rhythm n Bullets - [1.10.18] S3.0.2.apk;com.db.groovebullet;18;1.10
Richies Plank Experience;Richies Plank Experience v65+1.8.47 -QU;Richies Plank Experience v65+1.8.47 -QU/Richies Plank Experience [1.8.47.65] S2.11.apk;com.ToastVR.RichiesPlankExperience;65;1.8.47
Robo Recall;Robo Recall v47091+1.0 -Q2Patched-90Hz -QU;Robo Recall v47091+1.0 -Q2Patched-90Hz -QU/Robo Recall [1.0] patch+savefix+90Hz.apk;com.YourCompany.RoboRecall;47091;1.0
Rodent People - Origins;Rodent People - Origins v13+0.58 -QU;Rodent People - Origins v13+0.58 -QU/Rodent People - Origins [v0.58.13] S3.0.2.apk;com.ZenRepublic.RodentPeopleOrigins;13;v0.58
République VR;République VR v127622+1.2 -QU (b);République VR v127622+1.2 -QU (b)/Republique VR ['1.2'.127622] S3.0.2.apk;com.camouflaj.republiquevr;127622;1.2
SETVR;SETVR v37+1.61 -QU;SETVR v37+1.61 -QU/SETVR [_1.61_.37] S3.0.2.apk;com.DVNCTech.SETVR;37;1.61
SKYBOX VR Video Player;SKYBOX VR Video Player v342+1.0.3 -QU;SKYBOX VR Video Player v342+1.0.3 -QU/SKYBOX VR Video Player [1.0.3.342] S3.0.2.apk;xyz.skybox.player.ovr;342;1.0.3
SPHERES;SPHERES v38+1.37 -QU;SPHERES v38+1.37 -QU/SPHERES [1.37.38] S3.0.2.apk;com.Novelab.Spheres;38;1.37
SUPERHOT VR;SUPERHOT VR v140+1.14 -QU;SUPERHOT VR v140+1.14 -QU/SUPERHOT VR [1.14.140] S3.0.2.apk;unity.SUPERHOT_Team.SUPERHOT_VR_QA;140;1.14
Sairento VR - Untethered;Sairento VR - Untethered v203+1.9.4 -QU;Sairento VR - Untethered v203+1.9.4 -QU/Sairento VR _ Untethered [1.9.4] patch+savefix+90Hz.apk;com.mixedrealms.sairentovruntethered;203;1.9.4
SculptrVR;SculptrVR v181+2.88 -QU;SculptrVR v181+2.88 -QU/SculptrVR [2.88.181] S3.0.2.apk;com.sculptrvrinc.sculptrvrapp;181;2.88
Secret of Harrow Manor 2;Secret of Harrow Manor 2 v24+0.24 -unknown;Secret of Harrow Manor 2 v24+0.24 -unknown/Secret_of_Harrow_Manor_2.v0.24.apk;com.OnlyHuman.SoHM2vr;24;0.24
Sep's Diner;Sep's Diner v7+7555 -QU;Sep's Diner v7+7555 -QU/Seps Diner - [7555] S3.0.2.apk;com.scale1.sepsdinerSolo;7;7555
SetVR;SetVR v1+0.1 -unknown;SetVR v1+0.1 -unknown/setvr.apk;com.DVNCTech.SETVRearlyaccess;1;0.1
Shadow Point;Shadow Point v43+1.1 (b) -QU;Shadow Point v43+1.1 (b) -QU/Shadow Point [1.1.43] S3.0.2.apk;com.coatsink.nexus;43;1.1
Shelley's Creation;Shelley's Creation v4+0.75 -QU;Shelley's Creation v4+0.75 -QU/Shelleys Creation - [0.75.4] S3.0.2.apk;com.sciencevr.shelley.quest;4;0.75
Shinobi Breaker;Shinobi Breaker v35+1.1 -QU;Shinobi Breaker v35+1.1 -QU/Shinobi Breaker [1.1.35] S3.0.2.apk;com.Donuts.InfinityBreaker;35;1.1
Shooting Therapy;Shooting Therapy v2+0 -QU;Shooting Therapy v2+0 -QU/Shooting Therapy v2+0 -QU.apk;com.NoFlinch.ShootingTherapy;2;0.2
Shoottris;Shoottris v3+1.011 -QU;Shoottris v3+1.011 -QU/Shoottris [1.011.3] S3.0.2.apk;com.palvesoft.ShoottrisQuest;3;1.011
Shooty Fruity;Shooty Fruity v18+1.0 -QU;Shooty Fruity v18+1.0 -QU/Shooty Fruity [1.0.18] S2.11.apk;com.ndreams.shootyfruity;18;1.0
Shooty Skies Overdrive;Shooty Skies Overdrive v78450+1.03.78450 -QU;Shooty Skies Overdrive v78450+1.03.78450 -QU/Shooty Skies Overdrive [1.03.78450] S2.10.apk;com.mightygamesgroup.shootyvr;78450;1.03.78450
Shuttle Commander;Shuttle Commander v64+0.64 -QU (b);Shuttle Commander v64+0.64 -QU (b)/Shuttle Commander [0.64.64] S3.0.2.apk;com.ivre.ssc;64;0.64
Skyworld - Kingdom Brawl;Skyworld - Kingdom Brawl v32+1.22 -QU;Skyworld - Kingdom Brawl v32+1.22 -QU/Skyworld - Kingdom Brawl [1.22.32] S3.0.2.apk;com.vertigogames.skyworldbrawl;32;1.22
SlashMates;SlashMates v1+0.04 -unknown;SlashMates v1+0.04 -unknown/New SlashMates-0.04.apk;com.VRight.Slashmates;1;0.04
Smashmania;Smashmania v1+0.4 -unknown;Smashmania v1+0.4 -unknown/Smashmania 0.4 Patched.apk;ltd.getschwifty.smashmania.demo;1;0.4
Snake In a Box;Snake In a Box v56+5.6 -unknown;Snake In a Box v56+5.6 -unknown/SnakeInABox.apk;com.dofdev.SnakeInABox;56;5.6
Snow Fortress;Snow Fortress v2+1.33 -unknown;Snow Fortress v2+1.33 -unknown/Snow Fortress Quest Edition.apk;com.mythicalcitygames.snowfortress;2;1.33
Snowman VR;Snowman VR v1+0.6.0 -VRP;Snowman VR v1+0.6.0 -VRP/Snowman VR.apk;co.xocus.snowman;1;0.6.0
Solicitude Wake-up;Solicitude Wake-up v13+1.3 -QU;Solicitude Wake-up v13+1.3 -QU/Solicitude Wake-up [1.3.13] S3.0.2.apk;com.JRProduction.SolicitudeWakeupQuest;13;1.3
Song Beater;Song Beater v422+4.2 -QU;Song Beater v422+4.2 -QU/Song Beater [4.2.422] S3.0.2.apk;com.Playito.SongBeater;422;4.2
Space Channel 5 VR;Space Channel 5 VR v68514+1.0.3 -QU;Space Channel 5 VR v68514+1.0.3 -QU/Space Channel 5 VR Kinda Funky News Flash! [1.0.3.68514] S3.0.2.apk;com.grounding.ch5vrquest;68514;1.0.3
Space Junk;Space Junk v13+1.2 -QU;Space Junk v13+1.2 -QU/Space Junk [1.2.13] S3.0.2.apk;com.cestrian.spacejunk;13;1.2
Space Pilot Alliance;Space Pilot Alliance v1+2.0 -unknown;Space Pilot Alliance v1+2.0 -unknown/Space Pilot Alliance 2.6 Patched.apk;com.curiousvr.spacepilotalliance;1;2.0
Space Pirate Trainer;Space Pirate Trainer v164+1.64 -QU;Space Pirate Trainer v164+1.64 -QU/Space Pirate Trainer Quest [1.64.164] patch+savefix+90Hz+CustomRes.apk;com.iillusions.spacepiratetrainerquest;164;1.64
Space Shooter;Space Shooter v14+1.01 -QU;Space Shooter v14+1.01 -QU/Space Shooter [1.01.14] S3.0.2.apk;vr.tgs.spaceshooter;14;1.01
Space Slurpies;Space Slurpies v7+1.0 -QU;Space Slurpies v7+1.0 -QU/Space Slurpies [1.0.7] S3.0.2.apk;com.StarcadeArcadeLLC.SpaceSlurpies;7;1.0
Space Walk VR Experience;Space Walk VR Experience v700107+7.0.107.02 -QU;Space Walk VR Experience v700107+7.0.107.02 -QU/SpaceWalk Experience [7.0.107.02.700107] S3.0.2.apk;com.FTM.SpaceWalkQuest2OC;700107;7.0.107.02
Spaceteam VR;Spaceteam VR v2346+1.0 -unknown;Spaceteam VR v2346+1.0 -unknown/Spaceteam_VR v1.02346 _ScriptPatched.apk;com.CooperativeInnovations.Spaceteam;2346;1.0
Special Delivery;Special Delivery v30+1.1 -QU;Special Delivery v30+1.1 -QU/Special Delivery [1.1.30] S3.0.2.apk;com.MeerkatGaming.SD_Quest;30;1.1
Speed Cube;Speed Cube v9+0.7.1 -QU;Speed Cube v9+0.7.1 -QU/Speed Cube [0.7.1.9] S3.0.2.apk;com.Aligator.SpeedCube;9;0.7.1
Spice & Wolf VR;Spice & Wolf VR v9+1.04 -QU;Spice & Wolf VR v9+1.04 -QU/Spice Wolf VR [1.04.9] S3.0.2.apk;com.SpicyTails.SaW;9;1.04
Sport Mode;Sport Mode v24+0.2.1 -QU;Sport Mode v24+0.2.1 -QU/Sport Mode [0.2.1.24] S3.0.2.apk;com.Exo.Playground2;24;0.2.1
Sports Scramble;Sports Scramble v88+1.0 -unknown;Sports Scramble v88+1.0 -unknown/Sports Scramble v1.0.88 Patched 2020-07-05.apk;com.Armature.SportsScramble;88;1.0
Squid Seastar;Squid Seastar v1+0.1 -unknown;Squid Seastar v1+0.1 -unknown/Squid-Seastar-Quest.apk;com.VictoryXR.SquidDissection;1;0.1
Star Chart;Star Chart v18529+1.7.7 -VRP;Star Chart v18529+1.7.7 -VRP/Star Chart.apk;com.escapistgames.starchartvr.quest;18529;1.7.7
Star Wars - Tales from the Galaxy's Edge;Star Wars - Tales from the Galaxy's Edge v291854+1.0.4-185011.cl.291854 -QU (v.2);Star Wars - Tales from the Galaxy's Edge v291854+1.0.4-185011.cl.291854 -QU (v.2)/Star Wars - Tales from the Galaxys Edge [1.0.4+185011.cl.291854] S3.0.2.apk;com.ilmxlab.tales;291854;1.0.4+185011.cl.291854
Star Wars Pinball VR;Star Wars Pinball VR v10699+1.1 -QU;Star Wars Pinball VR v10699+1.1 -QU/Star Wars Pinball VR [1.1.10699] S3.0.2.apk;com.YourCompany.SWP_VR;10699;1.1
StardustVR;StardustVR v2+1.0 -QU;StardustVR v2+1.0 -QU/StardustVR v2+1.0.apk;com.FrozenDreams.stardustvr;2;1.0
Steamliner;Steamliner v1+1.2.5 -VRP;Steamliner v1+1.2.5 -VRP/Steamliner_Quest.apk;com.Diamond.Steamliner;1;1.2.5
Stride;Stride v22+1.0 -VRP (beta);Stride v22+1.0 -VRP (beta)/com.JoyWay.Stride.apk;com.JoyWay.Stride;22;1.0
Supermedium;Supermedium v1+1.0 -unknown;Supermedium v1+1.0 -unknown/Supermedium 1.0 Patched.apk;com.Supermedium.Supermedium;1;1.0
Supermedium;Supermedium v1+3 -unknown;Supermedium v1+3 -unknown/Supermedium [3].apk;com.Supermedium.Supermedium;1;3
Swarm;Swarm v730+730 -QU;Swarm v730+730 -QU/Swarm [730] S3.0.2.apk;com.sketchbox.Grapple;730;730
Sweet Escape VR;Sweet Escape VR v2+0.03 -unknown;Sweet Escape VR v2+0.03 -unknown/Sweet Escape VR 0.03 Patched.apk;com.realitysmash.sweetescape;2;0.03
Symphony of Stars;Symphony of Stars v173+1.73 -unknown;Symphony of Stars v173+1.73 -unknown/Symphony of Stars_1.73_Patched.apk;com.OnlyHuman.Ensign2vr;173;1.73
Synth Riders;Synth Riders v270+2.3.9.a8 -QU;Synth Riders v270+2.3.9.a8 -QU/Synth Riders [2.3.9.a8.270] S3.0.2.apk;com.kluge.SynthRiders;270;2.3.9.a8
TOKYO CHRONOS;TOKYO CHRONOS v31+1.0.4 -QU;TOKYO CHRONOS v31+1.0.4 -QU/TOKYO CHRONOS [1.0.4.31] S3.0.2.apk;com.MyDearest.ChronosQuest;31;1.0.4
Tetris Effect;Tetris Effect v38+1.0 -QU;Tetris Effect v38+1.0 -QU/Tetris Effect [1.0.38] S3.0.2.apk;com.enhanceexperience.tetriseffect;38;1.0
The Brookhaven Experiment;The Brookhaven Experiment v109+1.0259 -unknown;The Brookhaven Experiment v109+1.0259 -unknown/The.Brookhaven.Experiment Quest v1.0259.apk;com.Phosphor.Brookhaven;109;1.0259
The Climb 2;The Climb 2 v554+1.1 -QU;The Climb 2 v554+1.1 -QU/The Climb 2 [1.1.554] S3.0.2.apk;com.crytek.climb2;554;1.1
The Climb;The Climb v663+663.0 -QU;The Climb v663+663.0 -QU/The Climb [663.0] S3.0.2.apk;com.crytek.climb;663;663.0
The Curious Tale of the Stolen Pets;The Curious Tale of the Stolen Pets v25+1.06 -QU;The Curious Tale of the Stolen Pets v25+1.06 -QU/The Curious Tale of the Stolen Pets [1.06.25] S3.0.2.apk;com.fasttravelgames.diorama;25;1.06
The Exorcist - Legion VR;The Exorcist - Legion VR v37+1.2.0 -QU;The Exorcist - Legion VR v37+1.2.0 -QU/The Exorcist - Legion VR [1.2.0.37] S3.0.2.apk;com.wolfandwood.exorcistlegionvr;37;1.2.0
The Fight;The Fight v2+1.08 -QU;The Fight v2+1.08 -QU/The Fight [1.08.2] S3.0.2.apk;com.adamstanulewicz.TheFight;2;1.08
The Final Overs;The Final Overs v9+1.44 -QU;The Final Overs v9+1.44 -QU/TheFinalOvers [1.44.9] S3.0.2.apk;com.Mixeal.TheFinalOvers;9;1.44
The Island Odyssey! Hi Spec;The Island Odyssey! Hi Spec v1207+1.2.0.7 -unknown;The Island Odyssey! Hi Spec v1207+1.2.0.7 -unknown/TheIsland.apk;com.VRGameStudio.TheIsland;1207;1.2.0.7
The Knight of Queen;The Knight of Queen v10260+1.2.6 -QU;The Knight of Queen v10260+1.2.6 -QU/THE KNIGHT OF QUEEN [1.2.6.10260] S3.0.2.apk;com.VR_RPG_INC.THE_KNIGHT_OF_QUEEN_QUEST;10260;1.2.6
The Last place;The Last place v2+0.2 -unknown;The Last place v2+0.2 -unknown/The last place 0.2 Patched.apk;br.com.mashimobi.thelastplace;2;0.2
The Line;The Line v47+47 -QU;The Line v47+47 -QU/The Line [47] S3.0.2.apk;io.arvore.theline;47;47
The Purge Day;The Purge Day v90+1.0 -unknown;The Purge Day v90+1.0 -unknown/The Purge Day (com.RedLimbStudio.ThePurageDay) v1.0.apk;com.RedLimbStudio.ThePurageDay;90;1.0
The Room VR - A Dark Matter;The Room VR - A Dark Matter v5011+1.02 -QuestUndeground;The Room VR - A Dark Matter v5011+1.02 -QuestUndeground/The Room VR [1.02] patch+savefix.apk;com.FireproofStudios.TheRoomVR;5011;1.02
The Thrill Of The Fight;The Thrill Of The Fight v200131001+200131.1q -VRP;The Thrill Of The Fight v200131001+200131.1q -VRP/The Thrill Of The Fight v200131001 -VRP.apk;com.fyian.TheThrillOfTheFight;200131001;200131.1q
The Under Presents;The Under Presents v181+1.260 -QU;The Under Presents v181+1.260 -QU/The Under Presents v1.260.apk;com.TenderClaws.TheUnderPresents.Quest;181;1.260
The VR Titty Bar;The VR Titty Bar v1+0.1 -unknown;The VR Titty Bar v1+0.1 -unknown/VR tittybar V1.apk;com.ApexVR.ttBAR;1;0.1
The Walking Dead - Saints & Sinners;The Walking Dead - Saints & Sinners v19283909+192839 -QU;The Walking Dead - Saints & Sinners v19283909+192839 -QU/The Walking Dead - Saints & Sinners [2021.02.10 - build 192839.19283909] S3.0.2.apk;com.SDI.TWD;19283909;Shipping Stage / 2021.02.10 / build 192839
The Wizards - Dark Times;The Wizards - Dark Times v8+1.08 -QU;The Wizards - Dark Times v8+1.08 -QU/The Wizards - Dark Times [1.08] S3.0.2.apk;com.CarbonStudio.DarkTimes;8;1.08
The Wizards;The Wizards v14+1.11 -QU;The Wizards v14+1.11 -QU/The Wizards [1.11.14] patch+savefix+90Hz+CustomRes.apk;com.CarbonStudio.TheWizards;14;1.11
Thumper;Thumper v25+1.00 -QU;Thumper v25+1.00 -QU/Thumper [1.00.25] S3.0.2.apk;com.Drool.Thumper.quest;25;1.00
Tilt Brush;Tilt Brush v141+23.2-28f36f08b -QU;Tilt Brush v141+23.2-28f36f08b -QU/Tilt Brush [23.2-28f36f08b] patch+savefix+90Hz.apk;com.google.tiltbrush;141;23.2-28f36f08b
Time Stall;Time Stall v631960+1.0 -QU (b);Time Stall v631960+1.0 -QU (b)/Time Stall ['1.0'.631960] S3.0.2.apk;com.forcefieldxr.timestall;631960;1.0
Titans of Space PLUS;Titans of Space PLUS v62+1.0 -QU;Titans of Space PLUS v62+1.0 -QU/Titans of Space PLUS v1.0.62.apk;com.drashvr.titansofspacevr6dof;62;1.0
To The Top;To The Top v20+0.20 -QU;To The Top v20+0.20 -QU/TO THE TOP [0.20] S3.0.2.apk;com.electrichatgames.tothetop_al;20;0.20
Together VR;Together VR v2+1.5 -unknown;Together VR v2+1.5 -unknown/TogetherVRMv1.1.apk;com.AuroraGames.TogetherVRM;2;1.5
Topgolf with Pro Putt;Topgolf with Pro Putt v463+463 -QU;Topgolf with Pro Putt v463+463 -QU/Topgolf with Pro Putt [463] S3.0.2.apk;com.golfscope.proputt;463;463
Touring Karts PRO;Touring Karts PRO v7+1.0 -QU;Touring Karts PRO v7+1.0 -QU/Touring Karts PRO [_1.0_.7] S3.0.2.apk;com.ivanovichgames.touringkartsPRO;7;1.0
Toy Clash;Toy Clash v42+1.4.0r6 -unknown;Toy Clash v42+1.4.0r6 -unknown/Toy Clash v1.4.0r6.apk;com.fiveminlab.toyclash;42;1.4.0r6
Traffic Jams;Traffic Jams v21050311+1.0.21050311 -QU;Traffic Jams v21050311+1.0.21050311 -QU/Traffic Jams [1.0.21050311] S3.0.2.apk;nl.littlechicken.trafficjams.quest;21050311;1.0.21050311
Trash Gun;Trash Gun v11+0.11 -QU;Trash Gun v11+0.11 -QU/TrashGun [0.11] S3.0.2.apk;com.JohnRayGames.TrashGun;11;0.11
Travel The Words!;Travel The Words! v3+1.0 -QU;Travel The Words! v3+1.0 -QU/TravelTheWords - Full [1.0.3].apk;com.Studio8ight.TTW.Full;3;1.0
Tribe XR - DJ in VR;Tribe XR - DJ in VR v101+0.09.6 -QU;Tribe XR - DJ in VR v101+0.09.6 -QU/Tribe XR - DJ in VR [0.09.6.101] S3.0.2.apk;com.TribeXR.TribeXR;101;0.09.6
TripeaksDreamland VR;TripeaksDreamland VR v6+1.0 -QU;TripeaksDreamland VR v6+1.0 -QU/TriPeaksDreamland VR [01.00.6] S3.0.2.apk;de.DanielAli.TripeaksDLVRQuest;6;1.0
Triton;Triton v1+1.0 -unknown;Triton v1+1.0 -unknown/Triton VR SQ1.1.apk;com.TetraStudios.TritonVR;1;1.0
Trover Saves the Universe;Trover Saves the Universe v21+1.0 -QU;Trover Saves the Universe v21+1.0 -QU/Trover [1.0.21] patch+savefix+90Hz+CustomRes.apk;com.SquanchGames.Trover;21;1.0
Tsuro - The Game of The Path;Tsuro - The Game of The Path v53+1.14.0 -QU;Tsuro - The Game of The Path v53+1.14.0 -QU/Tsuro - The Game of The Path [1.14.0.53] S3.0.2.apk;com.Thunderbox.TsuroVR;53;1.14.0
Ultra Height - Mist City Climb;Ultra Height - Mist City Climb v2+1.7 -VRP;Ultra Height - Mist City Climb v2+1.7 -VRP/vr ultra height 1.7 new.apk;com.UltraFunGames.UltraHeightMistCityClimb;2;1.7
Ultrawings;Ultrawings v422+2.02 -QU;Ultrawings v422+2.02 -QU/Ultrawings v2.02.422.apk;com.BitPlanet.Ultrawings.Quest;422;2.02
Unstung;Unstung v351+1.2.0 -QU;Unstung v351+1.2.0 -QU/Unstung [1.2.0.351] S3.0.2.apk;com.Neomajika.Unstung;351;1.2.0
Until You Fall;Until You Fall v163081+1.0.6.163081 -QU;Until You Fall v163081+1.0.6.163081 -QU/Until You Fall [1.0.6.163081 (Release_1.0.6)] S3.0.2.apk;com.schellgames.untilyoufall;163081;1.0.6.163081 (Release_1.0.6)
VR Aim Trainer;VR Aim Trainer v1+1.0 -unknown;VR Aim Trainer v1+1.0 -unknown/VR Aim Trainer 1.0 Patched.apk;com.aim.vraimtrainer;1;1.0
VR Workout;VR Workout v4+0.9.8j -unknown;VR Workout v4+0.9.8j -unknown/VRWorkout v0.9.8a_Patched.apk;org.godotengine.vrworkout;4;0.9.8j
VRIT;VRIT v9+0.2 -QU;VRIT v9+0.2 -QU/VRIT v9+0.2 -QU.apk;com.Wasplay.VRIT;9;0.2
VRIT;VRIT v9+0.2 -QU;VRIT v9+0.2 -QU/VRIT [_0.2_.9] S3.0.2.apk;com.Wasplay.VRIT;9;0.2
VRKarts Sprint;VRKarts Sprint v28+1.18 -QU;VRKarts Sprint v28+1.18 -QU/VRKarts_Sprint [1.18.28] patch+savefix+90Hz+CustomRes.apk;com.viewpointgames.vrkarts_sprint_quest;28;1.18
VRtuos Pro;VRtuos Pro v1+2.0.3 -unknown;VRtuos Pro v1+2.0.3 -unknown/VRtuos Pro 2.0 Patched.apk;com.PavelMarceluch.VRtuosPro;1;2.0.3
Vacation Simulator;Vacation Simulator v84+1.3.0-38033 -QU;Vacation Simulator v84+1.3.0-38033 -QU/Vacation Simulator [1.3.0-38033.84] S3.0.2.apk;com.owlchemylabs.vacationsimulator;84;1.3.0-38033
Vader Immortal - Episode I;Vader Immortal - Episode I v236952+1.1.0 -QU;Vader Immortal - Episode I v236952+1.1.0 -QU/Vader Ep1 [1.1.0] patch+savefix.apk;com.ILMxLAB.VaderImmortal.ep1;236952;1.1.0
Vader Immortal - Episode II;Vader Immortal - Episode II v236948+2.0.2 -QU;Vader Immortal - Episode II v236948+2.0.2 -QU/Vader Episode 2 [2.0.2] patch+savefix.apk;com.ILMxLAB.VaderImmortal.ep2;236948;2.0.2
Vader Immortal - Episode III;Vader Immortal - Episode III v236944+3.0.2 -QU;Vader Immortal - Episode III v236944+3.0.2 -QU/Vader Episode 3 [3.0.2] patch+savefix.apk;com.ILMxLAB.VaderImmortal.ep3;236944;3.0.2
Vanishing Grace;Vanishing Grace v33+1.0.2 -QU;Vanishing Grace v33+1.0.2 -QU/Vanishing Grace [1.0.2.33] S3.0.2.apk;com.MontePerdido.VanishingGrace;33;1.0.2
Verto Studio VR;Verto Studio VR v251+2.5.1 -QU;Verto Studio VR v251+2.5.1 -QU/Verto Studio VR [2.5.1.251].apk;com.vertostudio.vertostudiovr;251;2.5.1
ViFit;ViFit v1+1.0.0 -unknown;ViFit v1+1.0.0 -unknown/ViFit v1.0.0.apk;com.VifitTraining.Vifit;1;1.0.0
Viking Days;Viking Days v21+1.0 -unknown;Viking Days v21+1.0 -unknown/Viking Days (com.vrmonkey.VikingDays) v1.0 patched.apk;com.vrmonkey.VikingDays;21;1.0
Virtual Virtual Reality;Virtual Virtual Reality v11+1.8.13 -QU;Virtual Virtual Reality v11+1.8.13 -QU/Virtual Virtual Reality [1.8.13.11].apk;com.TenderClaws.VVR.Quest;11;1.8.13
Void Racer - Extreme;Void Racer - Extreme v121+1.21 -QU;Void Racer - Extreme v121+1.21 -QU/Void Racer - Extreme [1.21.121] S3.0.2.apk;com.coplanar.vre;121;1.21
Volleyball Fever;Volleyball Fever v1+1.5.1 -QU;Volleyball Fever v1+1.5.1 -QU/Volleyball Fever [1.5.1] S3.0.2.apk;io.neuston.volleyballfever;1;1.5.1
Voxel Works;Voxel Works v9+0.3.8 -unknown;Voxel Works v9+0.3.8 -unknown/New Voxel Works Quest v0.3.8.apk;org.dammertz.vr.VoxelWorksQuest;9;0.3.8
Waifu's Spooky Space Station;Waifu's Spooky Space Station v11+1.0b -QU;Waifu's Spooky Space Station v11+1.0b -QU/Waifu's Spooky Space Station v11+1.0b -QU.apk;com.MiraiMadaGames.WSS;11;1.0b
Walkabout Mini Golf;Walkabout Mini Golf v1660+1.66 -QU;Walkabout Mini Golf v1660+1.66 -QU/Walkabout Mini Golf [1.66.1660] S3.0.2.apk;com.MightyCoconut.WalkaboutMiniGolf;1660;1.66
Waltz of the Wizard - Extended Edition;Waltz of the Wizard - Extended Edition v414+1.6.1.414 -QU;Waltz of the Wizard - Extended Edition v414+1.6.1.414 -QU/Waltz of the Wizard - Extended Edition [1.6.1.414] S2.11.apk;com.Aldin.WotW;414;1.6.1.414
Wander;Wander v3409+0.3409 -QU;Wander v3409+0.3409 -QU/Wander [0.3409] S3.0.2.apk;com.parkline.wander;3409;0.3409
Wands;Wands v788+1.6.2 -VRP;Wands v788+1.6.2 -VRP/Wands v1.6.2 -VRP.apk;com.CortopiaStudios.Wands;788;1.6.2
Wands;Wands v858+1.8.0 -QU (Q2only);Wands v858+1.8.0 -QU (Q2only)/Wands [1.8.0.858] S3.0.2.apk;com.CortopiaStudios.Wands;858;1.8.0
Warhammer 40000 - Battle Sister;Warhammer 40000 - Battle Sister v12351239+1.1.0 -QU;Warhammer 40000 - Battle Sister v12351239+1.1.0 -QU/Warhammer 40000 - Battle Sister [1.1.0.12351239] S3.0.2.apk;com.PixelToys.BattleSisters;12351239;1.1.0
Warlike Space;Warlike Space v4+1.4 -QU;Warlike Space v4+1.4 -QU/WarlikeSpace [1.4] S3.0.2.apk;com.EVR.WarlikeSpace;4;1.4
Warplanes - WW1 Fighters;Warplanes - WW1 Fighters v232+2.3.2 -QU;Warplanes - WW1 Fighters v232+2.3.2 -QU/Warplanes - WW1 Fighters [2.3.2.232] S3.0.2.apk;com.HomeNetGames.WW1oculus;232;2.3.2
Where Thoughts Go;Where Thoughts Go v38+1.26 -QU;Where Thoughts Go v38+1.26 -QU/Where Thoughts Go [1.26.38] S3.0.2.apk;com.feels.WhereThoughtsGo.Quest;38;1.26
Whirligig VR Media Player;Whirligig VR Media Player v25+4.84 -unknown;Whirligig VR Media Player v25+4.84 -unknown/Whirligig VR Media Player v4.84.apk;com.Whirligig.Whirligig;25;4.84
White Hole;White Hole v11+1.12 -QU;White Hole v11+1.12 -QU/WhiteHole [1.12.11] S3.0.2.apk;Fenrir.WhiteHole;11;1.12
Witchblood;Witchblood v183732+1.0 -unknown;Witchblood v183732+1.0 -unknown/Witchblood v1.0 Patched.apk;com.hiddenpath.Witchblood;183732;1.0
Wolves in the Walls;Wolves in the Walls v1375+1.1375 -VRP;Wolves in the Walls v1375+1.1375 -VRP/Wolves in the Walls v1.1375 -VRP.apk;com.fable.wolvesquest;1375;1.1375
Wonderglade;Wonderglade v109088216+1.9.88216 -QU;Wonderglade v109088216+1.9.88216 -QU/Wonderglade [1.9.88216.109088216] S3.0.2.apk;com.resolutiongames.wondergladesantacruz;109088216;1.9.88216
Wraith - The Oblivion - Afterlife;Wraith - The Oblivion - Afterlife v104+1.0 -QU;Wraith - The Oblivion - Afterlife v104+1.0 -QU/Wraith - The Oblivion - Afterlife [1.0.104] S3.0.2.apk;com.fasttravelgames.jukebox;104;1.0
X-BOOSTER;X-BOOSTER v100013+1.51 -QU;X-BOOSTER v100013+1.51 -QU/X-BOOSTER [1.51.100013] S3.0.2.apk;com.NiVision.XBOOSTER;100013;1.51
Yupitergrad;Yupitergrad v33+2.0.0 -QU;Yupitergrad v33+2.0.0 -QU/Yupitergrad [2.0.0.33] S3.0.2.apk;com.Gamedust.Yupitergrad;33;2.0.0
Zero Caliber - Reloaded;Zero Caliber - Reloaded v264+1.0 -QU;Zero Caliber - Reloaded v264+1.0 -QU/Zero Caliber - Reloaded v264+1.0 -QU.apk;com.XrealGames.ZcReloaded;264;1.0.264
Zombie World VR;Zombie World VR v4+1.0 -unknown;Zombie World VR v4+1.0 -unknown/Zombie World VR_1.0_Patched.apk;com.Appalga.ZombieWorldVR;4;1.0
Zombieland - Headshot Fever;Zombieland - Headshot Fever v1172+1.2.5 -QU;Zombieland - Headshot Fever v1172+1.2.5 -QU/Zombieland - Headshot Fever [1.2.5.1172] S3.0.2.apk;com.XRGames.ZombielandVR;1172;1.2.5
Zooma - Deluxe Edition;Zooma - Deluxe Edition v712+1.1.3 -unknown;Zooma - Deluxe Edition v712+1.1.3 -unknown/Zooma - Deluxe Edition v1.1.3.apk;com.GizmoVRLTD.Zooma;712;1.1.3
Zooma VR;Zooma VR v433+1.1.3 -QU;Zooma VR v433+1.1.3 -QU/Zooma [1.1.3.433] S3.0.2.apk;com.GizmoVRLTD.Zooma;433;1.1.3
exVRience Golf Club;exVRience Golf Club v68+1 -QU;exVRience Golf Club v68+1 -QU/exVRience Golf Club [1.68] S3.0.2.apk;com.exvrience.exvriencegolfclubq;68;1
Running Rclone command: sync "VRP-mirror13:Quest Games/.meta/thumbnails" "C:\Users\Oscar\Desktop\Rookie\androidsideloader\thumbnails"
Rclone error:
Rclone Output:
Running Rclone command: sync "VRP-mirror13:Quest Games/.meta/notes" "C:\Users\Oscar\Desktop\Rookie\androidsideloader\notes"
Rclone error:
Rclone Output:
Running command -s 192.168.0.101:5555 shell input keyevent KEYCODE_WAKEUP
Running command -s 192.168.0.101:5555 shell input keyevent KEYCODE_WAKEUP
Running command -s 192.168.0.101:5555 shell input keyevent KEYCODE_WAKEUP
Running command -s 192.168.0.101:5555 shell pm list packages -3
package:com.aim.vraimtrainer
package:com.CooperativeInnovations.Spaceteam
package:com.Gamedust.Yupitergrad
package:com.FireproofStudios.TheRoomVR
package:aaa.QuestAppLauncher.App
package:com.freelives.gorn
package:io.arvore.theline
package:com.crytek.climb
package:com.schellgames.untilyoufall
package:com.VerticalRobot.RedMatter
package:com.infectiousape.kingspray
package:com.Trebuchet.PrisonBossVR
package:com.TenderClaws.VVR.Quest
package:com.zoink.ghostgiant
package:com.Overrungames.Arcaxer
package:com.facebook.horizon
package:com.DigitalLode.Espire1
package:com.Drool.Thumper.quest
package:com.resolutiongames.demeo
package:com.resolutiongames.ignis
package:com.owlchemylabs.vacationsimulator
package:com.Pixelfun.FutbolinRevolution
package:com.cvr.highseas2
package:com.WenklyStudio.ElvenAssassin
package:com.holomia.missionxlite
package:com.ILMxLAB.VaderImmortal.ep1
package:com.ILMxLAB.VaderImmortal.ep2
package:com.figureout.questvr
package:com.VRKemono.RealmsofEternity
package:com.PicoPlanetDeveloping.FarmGame
package:VirtualDesktop.Android
package:de.erthu.advr
package:io.arvore.pixelripped1995
package:com.survios.Electronauts
package:com.themunky.drunknbarfightQuest
package:com.cloudheadgames.pistolwhip
package:com.odders.ohshape
package:com.beatgames.beatsaber
package:com.ViteiBackroom.Powder
package:com.enhanceexperience.tetriseffect
package:com.Sutur.DescentAlpsPreRelease
package:com.oculus.environment.prod.adobe
package:com.oculus.environment.prod.japan
package:com.tvb.cubism
package:com.halfbrick.fruitninjavr
package:com.MyronSoftware.Deisim
package:ca.StitchMedia.FlowWeaver
package:com.resolutiongames.wondergladesantacruz
package:com.oculus.environment.prod.spacestation
package:com.CortopiaStudios.Wands
package:com.emcneill.Ironlights
package:com.YourCompany.SWP_VR
package:com.ForwardXP.nuke
package:com.GreenerGames.QuestTreks
package:com.schellgames.ieytdquest
package:com.owlchemylabs.jobsimulator
package:com.polyarc.MossGame
package:com.SDI.TWD
package:com.markschramm.gravitylab
package:com.Armature.SportsScramble
package:com.melscience.melchemistryvr
package:com.coplanar.vre
package:com.coatsink.alone
package:com.coatsink.nexus
package:com.TenderClaws.TheUnderPresents.Quest
package:com.ivanovichgames.pangman
package:com.holonautic.HandPhysicsLab
package:com.whalerockindustries.testedvr
package:com.HighVoltage.Crossbow
package:com.parkline.wander
package:com.Miragesoft.RealVrFishingQ
package:com.fasttravelgames.diorama
package:com.drbeef.lambda1vr
package:com.metanaut.Gadgeteer
package:com.brennanhatton.dungeontrain
package:com.CortopiaStudios.DTRH
package:com.Thunderbox.TsuroVR
package:com.VRstudios.HoopsMadness
package:com.coinflip.ninja
package:com.hiddenpath.phoenix
package:com.scale1.sepsdinerSolo
package:com.voidroom.TeaForGod
package:com.forevr.bowling
package:com.weloveoculus.BMBF
package:com.kluge.SynthRiders
package:com.oculus.environment.prod.cyberhome
package:Settings.OculusQuest2
package:com.BigBoxVR.PopulationONE
package:com.oculus.dab2
package:com.iillusions.spacepiratetrainerquest
package:com.mixedrealms.sairentovruntethered
package:com.Armature.FailFactory
package:com.RacketFury.RF_GearVR
package:com.fyian.TheThrillOfTheFight
package:com.funktroniclabs.fuji
package:com.AlzanStudios.HPPortable
package:com.gravitysketch.gravitysketch
package:quest.eleven.forfunlabs
package:com.oculus.tv
package:com.ToastVR.RichiesPlankExperience
package:com.nextgenreality.GunClubVR
package:com.Mixeal.TheFinalOvers
package:com.Supermedium.Supermedium
package:com.enhanceexperience.rezquest
package:com.drbeef.quake2quest
package:com.chesstar.HiBow.Launcher
package:com.mightygamesgroup.shootyvr
package:com.drashvr.titansofspacevr6dof
package:com.Ikimasho.StarShaman
package:com.ilmxlab.tales
package:com.fasttravelgames.jukebox
package:com.PixelToys.DropDead
package:com.DashingCape.FoodFlinger
package:io.neuston.volleyballfever
package:com.forcefieldxr.timestall
package:com.Drifter.Kodiak
package:unity.SUPERHOT_Team.SUPERHOT_VR_QA
package:us.lighthaus.colorspace
package:com.UNIVRS.LWAVR
package:com.MiroWin.OMT
package:com.harmonixmusic.kata
package:com.fasttravelgames.apexconstruct
package:com.ndreams.shootyfruity
package:com.FlodLab.OceanCraft
package:com.nextgenreality.rush
package:com.onehamsa.RNXQ
package:com.YourCompany.RoboRecall
package:com.Chesstar.NesVR.QuestItch
package:com.Aldin.WotW
package:com.resolutiongames.codenamelazarus
package:com.AoQ.AttackOnQuest
package:com.forcefieldxr.explorevr
package:com.CyanWorlds.Myst
package:gg.trs.grappa
package:com.facebook.arvr.quillplayer
package:com.truantpixel.twomdquest
package:nl.littlechicken.trafficjams.quest
package:com.TriangleFactory.HyperDash
package:io.github.sds100.keymapper
package:com.SquirrelBytes.Hyperstacks
package:org.dammertz.vr.VoxelWorksQuest
package:com.SquanchGames.Trover
package:com.MightyCoconut.WalkaboutMiniGolf
package:jp.co.crypton.mikuvrq
package:com.Solfar.InDeath
package:com.picselica.OceanRiftFullQuest
package:com.TribeXR.TribeXR
package:com.CarbonStudio.TheWizards

View File

@@ -1 +1 @@
2.1HF2
2.1HF4