react-native-sms icon indicating copy to clipboard operation
react-native-sms copied to clipboard

Google Declaration Form on SMS Restrictions

Open murdocke opened this issue 6 years ago • 8 comments

With Google's new restrictions on sms/call log permissions, how do you recommend filling out the permissions declaration form when submitting your new APK to use react-native-sms.

murdocke avatar Jan 31 '19 15:01 murdocke

I'm also having this issue - I don't need the "success tracking" that presumably READ_SMS is required for, I just want to send SMS's.

dancherb avatar Feb 07 '19 17:02 dancherb

What we can do for this issue?

isurugajasinghe avatar Feb 08 '19 08:02 isurugajasinghe

Is it possible to use the module to initiate SMS requests without requiring the READ_SMS permission? Presumably the READ_SMS permission is used to track the sent/success status, but this may not be required for many developers.

dancherb avatar Feb 08 '19 08:02 dancherb

Deadline to remove read_sms from apps on the app store is coming up in 2 days - ideally I'd like to avoid removing the whole package, anyone figure something out? @isurugajasinghe @murdocke

dancherb avatar Mar 07 '19 07:03 dancherb

We started using platform specific code. For IOS we kept with react-native-sms and for Android we installed react-native-send-intent. We don't know if the message was truly sent or cancelled (so we just assume you sent the message) for Android users but at least they can still send out an sms. @dancherb

murdocke avatar Mar 07 '19 13:03 murdocke

Alguma solução quanto a isso?

RafaelFeiten avatar May 13 '19 17:05 RafaelFeiten

Same here. Any other solution

nihp avatar Aug 10 '20 10:08 nihp

I managed to bypass this issue by passing this option allowAndroidSendWithoutReadPermission: true and changing the permission from <uses-permission android:name="android.permission.READ_SMS" /> to <uses-permission android:name="android.permission.SEND_SMS" />. In my case I only need to send SMS, hopefully it helps someone.

mnifakram avatar May 18 '21 23:05 mnifakram