According to google "You may only request permissions that are necessary to implement critical current features or services in your application. You may not use permissions that give access to the user or device data for undisclosed, unimplemented, or disallowed features or purposes" If your app needs to read SMS for SMS-based user verification / OTP verification please use SMS Retriever API which does not need any SMS permission and your app can still read SMS for OTP verification Google play has a new policy for sensitive permissions such as call and SMS If the core functionality of your app is not SMS, then you do not need to request for that permission. you can send the SMS using the default SMS app on the device. use Intent.ACTION_VIEW like the code shown below. Then remove those permissions in your manifest file String intro="Write Message";
String phoneNumber="1234567890"
Uri sms_uri = Uri.parse("smsto:" +phoneNumber);
Intent sms_intent = new Intent(Intent.ACTION_VIEW, sms_uri);
sms_intent.setData(sms_uri);
sms_intent.putExtra("sms_body", intro);
startActivity(sms_intent);
Decompile APK Files: How to Get Source Code - RRutors Guide
How to stop EditText focus at Activity startup in Android?
How to validate email address in Android with Kotlin?
How do I generate random numbers in Dart?
How to convert milli seconds to hours, minutes and seconds in Android?
Key Points to remember while develop the Android Application.
What is ANR? How to avoid and resolve it?
Explain Fragment Life Cycle
Fix Android Emulator Kill Error When Running Your App
Symmetric vs Asymmetric Encryption in Android Server - RRutors
What is "shared preferences" in Android ?
Invoke-customs are only supported starting with android 0 --min-api 26
How To Set Text Color Programmatically Android TextView?
What is the difference between match_parent and fill_parent?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
Fix Play Store Rejection Due to SMS Permission - RRutors
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is the Different Between val and var in Kotlin?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How to Use Deprecated Handler() in Android - RRutors Guide
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to install/ uninstall apk by command line ADB
How to find Android Device UDID or unique ID?
What are Android Versions available?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How can i comment inside xml file in android studio?
Permission denied for window type 2010 in Marshmallow device
How to get a contact image using a phone number in android?
How to start a new activity on button click
How to reduce APK package size?
How to Get bitmap from drawable: Android
What is Application?
How do i load image from drawable folder in Jetpack Compose?
What happens next when the device switches between portrait and landscape?
How to check Android version?
How to copy database from assets folder in android using kotlin
What is Context?
Check List for Generate Signed APK Android
Android Studio project R can't find
Open PDF in Google Drive with Intent in Android - RRutors