capacitor
capacitor copied to clipboard
feat(core): export native bridge utility functions
Title: feat(core): export native bridge utility functions
Description
This PR exports the isRelativeOrProxyUrl and createProxyUrl utility functions from the native bridge, making them accessible via the Capacitor global object. This addresses existing TODOs in the codebase and allows plugins to better handle Capacitor-proxied URLs.
Changes
- Updated
CapacitorInstanceinterface incore/src/definitions-internal.ts - Exported functions in
core/native-bridge.ts - Removed TODO comments
Verification
- Ran
npm run build:nativebridgeto ensure successful build - Ran
npm testto ensure no regressions (All tests passed)
Closes #8255