briankabiro / react-native-get-sms-android

React Native module to get messages on an Android device
MIT License
137 stars 68 forks source link

add autoSendMultiSim method #76

Open mojabyte opened 3 years ago

mojabyte commented 3 years ago

This PR adds autoSendMultiSim method that gets an extra simSlot argument for selecting which SIM slot to send SMS from. simSlot could be either 0 for SIM slot 1 and 1 for SIM slot 2. This method requires an additional android.permission.READ_PHONE_STATE permission to access SIM cards. The autoSend method remains the same as before, passing null as simSlot argument to autoSendMultiSim method which selects the default SIM slot, and it doesn't need that permission.

mojabyte commented 3 years ago

66