@capacitor/cli 6.0.0-alpha.2 → 6.0.0-beta.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/declarations.d.ts +5 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/declarations.d.ts
CHANGED
|
@@ -451,6 +451,11 @@ export interface CapacitorConfig {
|
|
|
451
451
|
/**
|
|
452
452
|
* Configure the local scheme on Android.
|
|
453
453
|
*
|
|
454
|
+
* Custom schemes on Android are unable to change the URL path as of Webview 117. Changing this value from anything other than `http` or `https` can result in your
|
|
455
|
+
* application unable to resolve routing. If you must change this for some reason, consider using a hash-based url strategy, but there are no guarentees that this
|
|
456
|
+
* will continue to work long term as allowing non-standard schemes to modify query parameters and url fragments is only allowed for compatibility reasons.
|
|
457
|
+
* https://ionic.io/blog/capacitor-android-customscheme-issue-with-chrome-117
|
|
458
|
+
*
|
|
454
459
|
* @since 1.2.0
|
|
455
460
|
* @default https
|
|
456
461
|
*/
|
package/package.json
CHANGED