Skip to content

Commit

Permalink
Fixes the notification controls and bumps the code
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Nov 7, 2020
1 parent 54c6652 commit 1b0022b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def gitHash() {
return "git -C ${rootDir} rev-parse --short HEAD".execute().text.trim()
}

def version = "1.2.0"
def version_code = 115
def version = "1.2.0-beta1"
def version_code = 116

android {
compileSdkVersion 30
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ constructor(
return IntentFilter().apply {
if (hasPermission && handleCallAction) {
addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED)
addAction(RemoteViewIntentBuilder.REMOTE_PLAY_PRESSED)
addAction(RemoteViewIntentBuilder.REMOTE_NEXT_PRESSED)
addAction(RemoteViewIntentBuilder.REMOTE_CLOSE_PRESSED)
addAction(RemoteViewIntentBuilder.REMOTE_PREVIOUS_PRESSED)
addAction(RemoteViewIntentBuilder.CANCELLED_NOTIFICATION)
}
addAction(RemoteViewIntentBuilder.REMOTE_PLAY_PRESSED)
addAction(RemoteViewIntentBuilder.REMOTE_NEXT_PRESSED)
addAction(RemoteViewIntentBuilder.REMOTE_CLOSE_PRESSED)
addAction(RemoteViewIntentBuilder.REMOTE_PREVIOUS_PRESSED)
addAction(RemoteViewIntentBuilder.CANCELLED_NOTIFICATION)
}
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/raw/changelog.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<version
release="tbd"
release="Nov 07,2020"
version="1.2.0-beta1">
<feature>Adds support for Android 11.</feature>
<feature>Improves the library metadata sync performance.</feature>
Expand Down

0 comments on commit 1b0022b

Please sign in to comment.