mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-27 20:36:51 +01:00
Support CM 12.1 Music App
This commit is contained in:
parent
32b2500d6b
commit
7d86396e30
@ -3,6 +3,7 @@
|
|||||||
####Next Version
|
####Next Version
|
||||||
* Pebble: Support launching of Watchapps though the AppManager Activity
|
* Pebble: Support launching of Watchapps though the AppManager Activity
|
||||||
* Pebble: Fix firmware installation when all 8 app slots are in use (and probably firmware installation form recovery)
|
* Pebble: Fix firmware installation when all 8 app slots are in use (and probably firmware installation form recovery)
|
||||||
|
* Pebble: Support CM 12.1 Music App
|
||||||
* Mi Band: Make vibration count configurable for different kinds of Notifications
|
* Mi Band: Make vibration count configurable for different kinds of Notifications
|
||||||
* Support rebooting Mi Band/Pebble through the Debug Activity
|
* Support rebooting Mi Band/Pebble through the Debug Activity
|
||||||
|
|
||||||
|
@ -13,11 +13,11 @@ need to create an account and transmit any of your data to the vendor's servers.
|
|||||||
* SMS notification (sender, body)
|
* SMS notification (sender, body)
|
||||||
* K-9 Mail notification support (sender, subject, preview)
|
* K-9 Mail notification support (sender, subject, preview)
|
||||||
* Support for generic notificaions (above filtered out)
|
* Support for generic notificaions (above filtered out)
|
||||||
* Apollo playback info (artist, album, track)
|
* Music playback info (artist, album, track). Apollo and CM 12.1 Music App supported.
|
||||||
* Music control: play/pause, next track, previous track, volume up, volume down
|
* Music control: play/pause, next track, previous track, volume up, volume down
|
||||||
* List and remove installed apps/watchfaces
|
* List and remove installed apps/watchfaces
|
||||||
* Install .pbw files
|
* Install .pbw files
|
||||||
* Install firmware from .pbz files (EXPERIMENTAL)
|
* Install firmware from .pbz files
|
||||||
|
|
||||||
## How to use (Pebble)
|
## How to use (Pebble)
|
||||||
|
|
||||||
|
@ -136,6 +136,7 @@
|
|||||||
android:enabled="false" >
|
android:enabled="false" >
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="com.andrew.apollo.metachanged" />
|
<action android:name="com.andrew.apollo.metachanged" />
|
||||||
|
<action android:name="com.cyanogenmod.eleven.metachanged" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
<receiver
|
<receiver
|
||||||
|
@ -75,6 +75,7 @@ public class NotificationListener extends NotificationListenerService {
|
|||||||
source.equals("com.android.systemui") ||
|
source.equals("com.android.systemui") ||
|
||||||
source.equals("com.android.dialer") ||
|
source.equals("com.android.dialer") ||
|
||||||
source.equals("com.android.mms") ||
|
source.equals("com.android.mms") ||
|
||||||
|
source.equals("com.cyanogenmod.eleven") ||
|
||||||
source.equals("com.fsck.k9")) {
|
source.equals("com.fsck.k9")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user