diff --git a/app/build.gradle b/app/build.gradle index f7ac4302f..a3f850ff8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 diff --git a/app/src/main/kotlin/com/kelsos/mbrc/utilities/RemoteBroadcastReceiver.kt b/app/src/main/kotlin/com/kelsos/mbrc/utilities/RemoteBroadcastReceiver.kt index ef7b6e594..28cc62873 100644 --- a/app/src/main/kotlin/com/kelsos/mbrc/utilities/RemoteBroadcastReceiver.kt +++ b/app/src/main/kotlin/com/kelsos/mbrc/utilities/RemoteBroadcastReceiver.kt @@ -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) } } diff --git a/app/src/main/res/raw/changelog.xml b/app/src/main/res/raw/changelog.xml index 5fcd585a3..763d6bc49 100644 --- a/app/src/main/res/raw/changelog.xml +++ b/app/src/main/res/raw/changelog.xml @@ -1,7 +1,7 @@ Adds support for Android 11. Improves the library metadata sync performance.