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:
Antoine Cellerier 2011-03-09 18:04:05 +00:00
parent c9190dc188
commit 64cf0dd765
2 changed files with 25 additions and 26 deletions

View file

@ -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"