Skip to content

Commit

Permalink
Merge pull request #1049 from coderFrankenstain/coderFrankenstain-pat…
Browse files Browse the repository at this point in the history
…ch-duplicationSMS

Modify uses-permission to solve duplication of SMS
  • Loading branch information
kurahaupo authored Dec 4, 2021
2 parents 2a6fad7 + 4a3b29b commit c61070d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@
<!-- android.permission-group.MESSAGES -->
<uses-permission android:name="android.permission.READ_SMS"/>
<uses-permission android:name="android.permission.WRITE_SMS"/>
<uses-permission android:name="android.permission.SEND_SMS" />


<!-- Allows the app to receive and process SMS messages. This means the app could monitor or delete
messages sent to your device without showing them to you. -->
<!-- android.permission-group.MESSAGES -->
<uses-permission android:name="android.permission.RECEIVE_SMS"/>

<uses-permission android:name="android.permission.RECEIVE_MMS" />

<!-- android.permission-group.SOCIAL_INFO -->
<!-- introduced in API level 16 (Jelly Bean), previously part of READ_CONTACTS -->
<uses-permission android:name="android.permission.READ_CALL_LOG"/>
Expand Down

0 comments on commit c61070d

Please sign in to comment.