
Security News
Federal Audit Finds NIST Wasted Funds With No Plan to Clear NVD Backlog
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.
@fugood/react-native-intent-launcher
Advanced tools
Android Intent launcher
npm install @fugood/react-native-intent-launcher
import { startActivity, startService } from '@fugood/react-native-intent-launcher';
// Start an activity
startActivity({
action: 'android.settings.SETTINGS',
}).then((result) => {
console.log('Activity result:', result);
});
// Start an activity with data, extras, and specific component
startActivity({
action: 'android.intent.action.VIEW',
data: 'https://www.google.com',
extra: {
'key': 'value',
},
// Optional: target specific package/class
// packageName: 'com.android.chrome',
// className: 'com.google.android.apps.chrome.Main',
}).then((result) => {
console.log('Activity finished with result:', result);
});
// Start a service
startService({
action: 'com.example.MY_SERVICE',
}).then(() => {
console.log('Service started');
}).catch((e) => {
console.error('Failed to start service:', e);
});
startActivity(params: IntentParams): Promise<ActivityResult>Starts an Android activity with the given parameters. Returns a Promise that resolves with the activity result.
startService(params: IntentParams): Promise<void>Starts an Android service with the given parameters.
IntentParams| Property | Type | Description |
|Data | | |
| action | string | The intent action, e.g., android.intent.action.VIEW. |
| data | string | The intent data URI. |
| type | string | The intent MIME type. |
| category | string | The intent category. |
| extra | Object | Key-value pairs for intent extras. |
| packageName | string | The package name of the component. |
| className | string | The class name of the component. |
| flags | number | Intent flags (integer). |
| foreground | boolean | If true, use startForegroundService on Android 8.0+. |
ActivityResult| Property | Type | Description |
| resultCode | number | The result code returned by the activity. |
| data | string | The result data URI, if any. |
| extra | Object | The result extras, if any. |
MIT
Built and maintained by BRICKS.
FAQs
Android Intent launcher
We found that @fugood/react-native-intent-launcher demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.