
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@busfor/react-native-sms-verification-api
Advanced tools
React Native module for Android automatic SMS verification with SMS retriever API
Verify your users by SMS without making them deal with verification code.
1.0.x | 1.1.x+ |
---|---|
Android support libraries | AndroidX |
Install package
$ yarn add react-native-sms-verification-api
Add Kotlin gradle plugin
buildscript {
ext {
...
kotlinVersion = '1.3.50'
}
...
dependencies {
...
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${project.ext.kotlinVersion}"
}
}
Autolinking will just do the job.
$ react-native link @busfor/react-native-sms-verification-api
android/app/src/main/java/[...]/MainActivity.java
import com.busfor.smsverification.RNSmsVerificationApiPackage;
to the imports at the top of the filenew RNSmsVerificationApiPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':@busfor_react-native-sms-verification-api'
project(':@busfor_react-native-sms-verification-api').projectDir = new File(rootProject.projectDir, '../node_modules/@busfor/react-native-sms-verification-api/android')
android/app/build.gradle
:
implementation project(':react-native-sms-verification-api')
import SmsVerificationApi from "react-native-sms-verification-api";
SmsVerificationApi.requestPhoneNumber()
.then(phone => Alert.alert("SmsVerificationApi.requestPhoneNumber", phone))
.catch(reason => console.log(reason));
SmsVerificationApi.startSmsRetriever();
SmsVerificationApi.addSmsListener(event => {
Alert.alert("SmsVerificationApi.smsRetriever", event.message);
});
SmsVerificationApi.removeSmsListener();
FAQs
React Native module for Android automatic SMS verification with SMS retriever API
The npm package @busfor/react-native-sms-verification-api receives a total of 0 weekly downloads. As such, @busfor/react-native-sms-verification-api popularity was classified as not popular.
We found that @busfor/react-native-sms-verification-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.