![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@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 9 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.