Skip to content

Commit d2bbf93

Browse files
committed
chore: prepare release 1.1.5
1 parent 321e84f commit d2bbf93

4 files changed

Lines changed: 15 additions & 21 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
==========
33

4+
## Version 1.1.5
5+
6+
_2026-07-19_
7+
8+
- Fix: attempt to automatically rebind the service on device boot or after a disconnection
9+
- Change target SDK version to 37
10+
- Upgrade internal libraries.
11+
412
## Version 1.1.4
513

614
_2025-11-12_

‎README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ For ADB, you first need to enable ADB debugging in the developer options of the
2828

2929
```
3030
adb connect [IP address of your TV]
31-
adb install ./mediasession2mqtt-1.1.4.apk
31+
adb install ./mediasession2mqtt-1.1.5.apk
3232
```
3333

3434
or for an upgrade:
3535

3636
```
37-
adb install -r ./mediasession2mqtt-1.1.4.apk
37+
adb install -r ./mediasession2mqtt-1.1.5.apk
3838
```
3939

4040
## Configuration

‎app/build.gradle.kts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ plugins {
55

66
android {
77
namespace = "be.digitalia.mediasession2mqtt"
8-
compileSdk = 36
8+
compileSdk = 37
99

1010
defaultConfig {
1111
applicationId = "be.digitalia.mediasession2mqtt"
1212
minSdk = 22
13-
targetSdk = 36
14-
versionCode = 2200114
15-
versionName = "1.1.4"
13+
targetSdk = 37
14+
versionCode = 2200115
15+
versionName = "1.1.5"
1616

1717
androidResources.localeFilters += listOf("en")
1818
}

‎app/proguard-defaults.txt‎

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,4 @@
3131
-dontnote java.lang.invoke.**
3232

3333
# Remove Kotlin assertions
34-
-assumenosideeffects class kotlin.jvm.internal.Intrinsics {
35-
public static void checkNotNull(...);
36-
public static void checkExpressionValueIsNotNull(...);
37-
public static void checkNotNullExpressionValue(...);
38-
public static void checkParameterIsNotNull(...);
39-
public static void checkNotNullParameter(...);
40-
public static void checkReturnedValueIsNotNull(...);
41-
public static void checkFieldIsNotNull(...);
42-
public static void throwUninitializedPropertyAccessException(...);
43-
public static void throwNpe(...);
44-
public static void throwJavaNpe(...);
45-
public static void throwAssert(...);
46-
public static void throwIllegalArgument(...);
47-
public static void throwIllegalState(...);
48-
}
34+
-processkotlinnullchecks remove

0 commit comments

Comments
 (0)