React Native package to retreive sms from Android only
npm install react-native-sms-fetch
NOTE: getSms() method only works with these changes:
In your android/app/src/main/AndroidManifest.xml
<uses-permission android:name="android.permission.READ_SMS" />
import { getSms } from 'react-native-sms-fetch';
// ...
const result = await getSms();
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library