jerems6
Results
1
comments of
jerems6
Try to check the permission before calling the sendSMS function. I am using [react-native-permissions](https://github.com/yonahforst/react-native-permissions): ``` Permissions.checkMultiple(['readSms', 'receiveSms']).then((response) => { if (response.readSms == 'authorized' && response.receiveSms == 'authorized') this.sendMessage(); // Your...