diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-10-31 15:32:57 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-10-31 15:32:57 +0000 |
| commit | 49f1ec8e8ad0b4c06df01fcdd4b18037fbe3ebcc (patch) | |
| tree | b185e604dcea64865389f5b149e754ba8ffd3f75 /android/AndroidManifest.xml | |
| parent | dbe2ac1ec6f4ed88f267d2a4df024b6dc42a87ff (diff) | |
| download | rockbox-49f1ec8e8ad0b4c06df01fcdd4b18037fbe3ebcc.zip rockbox-49f1ec8e8ad0b4c06df01fcdd4b18037fbe3ebcc.tar.gz rockbox-49f1ec8e8ad0b4c06df01fcdd4b18037fbe3ebcc.tar.bz2 rockbox-49f1ec8e8ad0b4c06df01fcdd4b18037fbe3ebcc.tar.xz | |
Add support multimedia keys/buttons to the core, and adapt Rockbox on android for it (multimedia buttons are found on wired headsets and the lock screen in cyanogenmod).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28421 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'android/AndroidManifest.xml')
| -rw-r--r-- | android/AndroidManifest.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index c52d83f..06a13dd 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -16,10 +16,21 @@ </intent-filter> </activity> <service android:name=".RockboxService"/> + <receiver android:name=".Helper.MediaButtonReceiver$MediaReceiver" + android:enabled="true" + android:exported="true"> + <intent-filter> + <action android:name="android.intent.action.MEDIA_BUTTON" /> + </intent-filter> + </receiver> <activity android:name="KeyboardActivity"></activity> <activity android:name="YesnoActivity"></activity> </application> <uses-sdk android:minSdkVersion="4" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> + + + + </manifest> |