@capacitor/cli 8.0.0-nightly-20250903T150600.0 → 8.0.0-nightly-20250905T150633.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/android-template.tar.gz +0 -0
- package/assets/capacitor-cordova-android-plugins.tar.gz +0 -0
- package/assets/capacitor-cordova-ios-plugins.tar.gz +0 -0
- package/assets/ios-pods-template.tar.gz +0 -0
- package/assets/ios-spm-template.tar.gz +0 -0
- package/dist/config.js +13 -2
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/config.js
CHANGED
|
@@ -334,8 +334,19 @@ async function determineAndroidStudioPath(os) {
|
|
|
334
334
|
}
|
|
335
335
|
return p;
|
|
336
336
|
}
|
|
337
|
-
case "linux" /* OS.Linux */:
|
|
338
|
-
|
|
337
|
+
case "linux" /* OS.Linux */: {
|
|
338
|
+
const studioExecPath = '/usr/local/android-studio/bin/studio';
|
|
339
|
+
const studioShPath = '/usr/local/android-studio/bin/studio.sh';
|
|
340
|
+
try {
|
|
341
|
+
if (await (0, fs_extra_1.pathExists)(studioExecPath)) {
|
|
342
|
+
return studioExecPath;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
catch (e) {
|
|
346
|
+
debug(`Error checking for studio executable: %O`, e);
|
|
347
|
+
}
|
|
348
|
+
return studioShPath;
|
|
349
|
+
}
|
|
339
350
|
}
|
|
340
351
|
return '';
|
|
341
352
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/cli",
|
|
3
|
-
"version": "8.0.0-nightly-
|
|
3
|
+
"version": "8.0.0-nightly-20250905T150633.0",
|
|
4
4
|
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
|
|
5
5
|
"homepage": "https://capacitorjs.com",
|
|
6
6
|
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
|