We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WRITE_SMS
I am completely new to android, the permission is so complex to me :(
I follow the official docu, but sometimes, I can call code successfully, but sometimes, I cannot.
Eventually, I found the secret.
secret
In manifest, you have to highlight write_sms for sure
manifest
<uses-permission android:name="android.permission.RECEIVE_SMS" /> <uses-permission android:name="android.permission.WRITE_SMS" /> <uses-permission android:name="android.permission.SEND_SMS" />
But in PermissionsAndroid.requestMultiple, you cannot request PermissionsAndroid.PERMISSIONS.WRITE_SMS, android will throw error with null permission.
PermissionsAndroid.requestMultiple
PermissionsAndroid.PERMISSIONS.WRITE_SMS
null
I hope it will help someone else
The text was updated successfully, but these errors were encountered:
i am facing same issue, any solution?
Sorry, something went wrong.
No branches or pull requests
I am completely new to android, the permission is so complex to me :(
I follow the official docu, but sometimes, I can call code successfully, but sometimes, I cannot.
Eventually, I found the
secret
.In
manifest
, you have to highlight write_sms for sureBut in
PermissionsAndroid.requestMultiple
, you cannot requestPermissionsAndroid.PERMISSIONS.WRITE_SMS
, android will throw error withnull
permission.I hope it will help someone else
The text was updated successfully, but these errors were encountered: