Skip to content

Commit

Permalink
Fix linting error, SMS_SMS permission requires hardware.telephony
Browse files Browse the repository at this point in the history
  • Loading branch information
Xcreen committed Nov 12, 2024
1 parent e01d491 commit 9d5bfcb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">

<uses-feature android:name="android.hardware.telephony" android:required="true"
tools:ignore="UnnecessaryRequiredFeature" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SEND_SMS" />
Expand Down

0 comments on commit 9d5bfcb

Please sign in to comment.