https://github.com/shukerullah/react-native-chrome-intent
A little known feature in Android lets you launch apps directly from a web page via an Android Intent.
https://github.com/shukerullah/react-native-chrome-intent
Last synced: 3 months ago
JSON representation
A little known feature in Android lets you launch apps directly from a web page via an Android Intent.
- Host: GitHub
- URL: https://github.com/shukerullah/react-native-chrome-intent
- Owner: shukerullah
- License: mit
- Created: 2020-08-30T06:22:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-29T07:45:35.000Z (over 1 year ago)
- Last Synced: 2025-07-09T15:58:19.866Z (6 months ago)
- Language: Java
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-native-chrome-intent
##### [Android Intents with Chrome](https://developer.chrome.com/multidevice/android/intents)
A little known feature in Android lets you launch apps directly from a web page via an Android Intent.
### Install
```shell
npm install --save react-native-chrome-intent
```
or
```shell
yarn add react-native-chrome-intent
```
## Usage
```javascript
import AndroidIntent from "react-native-chrome-intent";
AndroidIntent.openIntent(
"intent://[HOST/URI-path]#Intent;package=[string];action=[string];category=[string];component=[string];scheme=[string];end;"
).then((wasOpened) => {});
```