diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-11-12 21:04:13 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-11-12 21:04:13 +0000 |
| commit | 0cf2cc1607a0844e906042173815451cd9c2ff58 (patch) | |
| tree | 77c555919d5c08f9a54f2b28cababe1d2d207f7e /android/AndroidManifest.xml | |
| parent | bb56bc4ba08bf6c6458a289ef4918dfaea30b238 (diff) | |
| download | rockbox-0cf2cc1607a0844e906042173815451cd9c2ff58.zip rockbox-0cf2cc1607a0844e906042173815451cd9c2ff58.tar.gz rockbox-0cf2cc1607a0844e906042173815451cd9c2ff58.tar.bz2 rockbox-0cf2cc1607a0844e906042173815451cd9c2ff58.tar.xz | |
Android: Change how detecting call state (introduced in r27746) works, from polling to event based.
* For some reason, the polling methid is much more inefficient than I thought. According to htop it caused up to 15% CPU load on some phones (e.g. Galaxy S).
The event based causes no CPU load.
Rockbox' idle CPU load is now back to 0%, while it was previously dominated by polling the call state.
* Also stop on outgoing calls (no need to explicitely pause for making a call anymore).
* Factor out the detection mechanism to separate files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28564 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'android/AndroidManifest.xml')
| -rw-r--r-- | android/AndroidManifest.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index e0fc106..0eab90f 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -29,9 +29,10 @@ </intent-filter> </receiver> + </application> <uses-sdk android:minSdkVersion="4" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> - + <uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> </manifest> |