1.0.0 • Published 3 years ago
capacitor-android-intents v1.0.0
capacitor-android-intents
Simple intent tools for Capacitor on Android platform.
Install
npm install capacitor-android-intents
npx cap syncUsage
API
registerBroadcastReceiver(...)
registerBroadcastReceiver(options: { filters: string[]; }, callback: (data: { [key: string]: any; }) => void) => any| Param | Type |
|---|---|
options | { filters: {}; } |
callback | (data: { key: string: any; }) => void |
Returns: any
unregisterBroadcastReceiver(...)
unregisterBroadcastReceiver(options: { id: string; }) => any| Param | Type |
|---|---|
options | { id: string; } |
Returns: any
sendBroadcastIntent(...)
sendBroadcastIntent(options: { action: string; value: { [key: string]: any; }; }) => any| Param | Type |
|---|---|
options | { action: string; value: { key: string: any; }; } |
Returns: any