Skip to content

Commit

Permalink
Android: Don't require vibrate permission
Browse files Browse the repository at this point in the history
Google Play won't distribute the app to devices that do not allow
the vibrate permission if required is not false.
  • Loading branch information
zackhow committed Oct 25, 2018
1 parent 4d62037 commit e12ddc4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/Android/app/src/main/AndroidManifest.xml
Expand Up @@ -18,7 +18,10 @@
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.android.providers.tv.permission.READ_EPG_DATA"/>
<uses-permission android:name="com.android.providers.tv.permission.WRITE_EPG_DATA"/>
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission
android:name="android.permission.VIBRATE"
android:required="false"
/>

<application
android:name=".DolphinApplication"
Expand Down

0 comments on commit e12ddc4

Please sign in to comment.