Reputation: 809
The app keeps rejecting because of new sensitive policies. In the manifest. I have included these three permissions:
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
.
<uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />
.
<uses-permission android:name="android.permission.RECEIVE_SMS" />
Any idea how to approve this?
Upvotes: 0
Views: 410
Reputation: 809
Need to use Google SMS API instead of current react-native basic implementation. https://developers.google.com/identity/sms-retriever
Upvotes: 1