Gathering detailed insights and metrics for react-native-immediate-phone-call-fang
Gathering detailed insights and metrics for react-native-immediate-phone-call-fang
Gathering detailed insights and metrics for react-native-immediate-phone-call-fang
Gathering detailed insights and metrics for react-native-immediate-phone-call-fang
Initiate immediate phone call (without further user interaction) for React Native on iOS and Android.
npm install react-native-immediate-phone-call-fang
Typescript
Module System
Node Version
NPM Version
Java (86.93%)
Objective-C (8.01%)
JavaScript (5.06%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
GPL-3.0 License
10 Commits
1 Branches
1 Contributors
Updated on Aug 19, 2019
Latest Version
1.0.1
Package Id
react-native-immediate-phone-call-fang@1.0.1
Unpacked Size
61.73 kB
Size
23.39 kB
File Count
12
NPM Version
6.10.3
Node Version
12.8.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
No dependencies detected.
Initiate immediate phone call (without further user interaction) for React Native on iOS and Android. The difference with react-native-phone-call and react-native-communications is that with this library no additional user input is required for Android and the call starts instantly (Apple always asks confirmation since the last iOs updates...).
NOTICE:
Fast and easy:
1npm install react-native-immediate-phone-call --save 2react-native link react-native-immediate-phone-call
Or manual: add the latest version as dependeny to your package.json.
1{ 2 "name": "YourProject", 3 ... 4 }, 5 "dependencies": { 6 ... 7 "react-native-immediate-phone-call": "^1.0.0", 8 ... 9 }
<uses-permission android:name="android.permission.CALL_PHONE" />
include ':react-native-immediate-phone-call', ':app'
project(':react-native-immediate-phone-call').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-immediate-phone-call/android')
implementation project(':react-native-immediate-phone-call')
import com.github.wumke.RNImmediatePhoneCall.RNImmediatePhoneCallPackage;
...
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
...
new RNImmediatePhoneCallPackage(),
...
);
}
...
import com.github.wumke.RNImmediatePhoneCall.RNImmediatePhoneCallPackage; // <--- import
...
public class MainActivity extends ReactActivity {
...
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
RNImmediatePhoneCallPackage.onRequestPermissionsResult(requestCode, permissions, grantResults); // very important event callback
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
...
}
1import RNImmediatePhoneCall from 'react-native-immediate-phone-call'; 2... 3RNImmediatePhoneCall.immediatePhoneCall('0123456789'); 4...
This project uses semantic versioning: MAJOR.MINOR.PATCH. This means that releases within the same MAJOR version are always backwards compatible. For more info see semver.org.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/10 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More