You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Android Studio exec open all platforms
- Visual Studio determine target SLN and open version 2022 if target or 2019 if target. Fixes VS2019 installed opening by default
console.error("Unsupported OS for launching Android Studio");
1325
+
return;
1326
+
}
1327
+
1328
+
exec(command,(error,stdout,stderr)=>{
1329
+
if(error){
1330
+
console.error("Could not launch Android Studio:",stderr);
1248
1331
event.sender.send('sendUIMessage',
1249
-
'<strong>Error!</strong><br>'+
1250
-
'<span>Could not launch Android Studio. Make sure the command-line launcher is installed by running <i>Tools -> Create Command-line Launcher...</i> inside Android Studio and try again</span>'
1251
-
);
1332
+
'<strong>Error!</strong><br>'+
1333
+
'<span>Could not launch Android Studio. Make sure the command-line launcher is installed by running <i>Tools -> Create Command-line Launcher...</i> inside Android Studio and try again.</span>'
0 commit comments