Capacitor plugin to check if Android Instant App or Apple App Clip
npm install @trentrand/capacitor-instant
npx cap sync
isInstantApp() => Promise<{ value: boolean; }>
Returns whether the app is running as an Android Instant App or iOS App Clip. This value is determined at app initialization and cached.
On Android: Uses PackageManager.isInstantApp() On iOS: Checks for XCAppClipURL environment variable On Web: Always returns false
Returns: Promise<{ value: boolean; }>