mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
Looks like Android 2.3 is more strict when enforcing permissions. Explicitly declare allowed intents under the Service tag in AndroidManifest.xml.
Remove useless rockbox intent class. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29552 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c9190dc188
commit
64cf0dd765
2 changed files with 25 additions and 26 deletions
|
|
@ -19,7 +19,12 @@
|
|||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<service android:name=".RockboxService"/>
|
||||
<service android:name=".RockboxService">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
<receiver android:name=".Helper.MediaButtonReceiver$MediaReceiver"
|
||||
android:enabled="true"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue