We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e67b1 commit f6e5c3fCopy full SHA for f6e5c3f
1 file changed
QuestAppVersionSwitcher/Adb/AdbWrapper.cs
@@ -223,8 +223,8 @@ public static void GrantPermissions(string device)
223
{
224
StartServer();
225
226
- RunAdbCommand("-s " + device + " shell pm grant" + Application.Context.PackageName + " android.permission.WRITE_SECURE_SETTINGS");
227
- RunAdbCommand("-s " + device + " shell pm grant" + Application.Context.PackageName + " android.permission.READ_LOGS");
+ RunAdbCommand("-s " + device + " shell pm grant " + Application.Context.PackageName + " android.permission.WRITE_SECURE_SETTINGS");
+ RunAdbCommand("-s " + device + " shell pm grant " + Application.Context.PackageName + " android.permission.READ_LOGS");
228
}
229
230
/// <summary>
0 commit comments