https://github.com/aeharding/capacitor-launch-native
https://github.com/aeharding/capacitor-launch-native
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aeharding/capacitor-launch-native
- Owner: aeharding
- Created: 2024-03-07T02:36:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T01:49:27.000Z (over 1 year ago)
- Last Synced: 2025-10-26T08:35:05.219Z (10 months ago)
- Language: Java
- Size: 229 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# capacitor-launch-native
Launch an app natively, if it exists
## Install
```bash
npm install capacitor-launch-native
npx cap sync
```
## API
* [`attempt(...)`](#attempt)
### attempt(...)
```typescript
attempt(options: { url: string; }) => Promise<{ completed: boolean; }>
```
| Param | Type |
| ------------- | ----------------------------- |
| **`options`** | { url: string; } |
**Returns:** Promise<{ completed: boolean; }>
--------------------