Skip to content

Commit 67de279

Browse files
authored
Merge pull request #1891 from smartdevicelink/master
Merge master back to develop for 5.8.0
2 parents 3b81f54 + 0a1a453 commit 67de279

File tree

5 files changed

+34
-61
lines changed

5 files changed

+34
-61
lines changed

CHANGELOG.md

Lines changed: 3 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,13 @@
1-
# 5.7.0 Release Notes
1+
# 5.8.0 Release Notes
22

33
## Summary:
44

55
|| Version|
66
|---|---|
77
| **Protocol** | 5.4.1 |
88
| **RPC** | 8.0.0 |
9-
| **Tested Targeting** | Android 34 |
9+
| **Tested Targeting** | Android 36 |
1010

1111
## Bug Fix / Enhancements:
1212

13-
- [Add pending intent to ping intents] (https://github.com/smartdevicelink/sdl_java_suite/pull/1844
14-
15-
- [Fixes #1845 typo in SdlBroadcastReceiver for uncaughtException handler](https://github.com/smartdevicelink/sdl_java_suite/pull/1846
16-
17-
- [Bugfix/issue #1842 - NPE in BaseTextAndGraphicsManager](https://github.com/smartdevicelink/sdl_java_suite/pull/1847
18-
19-
- [Fix case for UncaughtExceptionHandler in SdlBroadcastReceiver for RemoteServiceException](https://github.com/smartdevicelink/sdl_java_suite/pull/1849
20-
21-
- [Update gradle to 7.4.2](https://github.com/smartdevicelink/sdl_java_suite/pull/1853
22-
23-
- [Fix NPE in SdlRouterService](https://github.com/smartdevicelink/sdl_java_suite/pull/1870
24-
25-
- [Bugfix/issue 1867 Bluetooth notification error fix](https://github.com/smartdevicelink/sdl_java_suite/pull/1868
26-
27-
- [Clean LifecycleManager before closing](https://github.com/smartdevicelink/sdl_java_suite/pull/1866
28-
29-
- [Move router service message sending to its own thread](https://github.com/smartdevicelink/sdl_java_suite/pull/1871
30-
31-
- [Bugfix/issue 1863 update gradle build variants for hello_sdl](https://github.com/smartdevicelink/sdl_java_suite/pull/1864
32-
33-
- [Android 14 add package to PendingIntents in RouterService](https://github.com/smartdevicelink/sdl_java_suite/pull/1862
34-
35-
- [Android 14 Runtime registered broadcast receivers export behavior](https://github.com/smartdevicelink/sdl_java_suite/pull/1858
36-
37-
- [Add logic to handle RAI response failure](https://github.com/smartdevicelink/sdl_java_suite/pull/1873
38-
39-
- [Android 14 foreground service type required](https://github.com/smartdevicelink/sdl_java_suite/pull/1860
40-
41-
- [Update integration validator with latest permissions and checks for exported](https://github.com/smartdevicelink/sdl_java_suite/pull/1875
42-
43-
- [Fix SDLLockScreenActivityEspressoTest for newer devices](https://github.com/smartdevicelink/sdl_java_suite/pull/1877
44-
45-
- [Remove only app logic for device listener start](https://github.com/smartdevicelink/sdl_java_suite/pull/1879)
46-
47-
- [Fix NPE in TransportBroker](https://github.com/smartdevicelink/sdl_java_suite/pull/1882)
48-
49-
**Full Changelog**: https://github.com/smartdevicelink/sdl_java_suite/compare/5.6.1...RC_5.7.0
13+
- [Update to gradle version 8.13 and target API level 36] (https://github.com/smartdevicelink/sdl_java_suite/pull/1886)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.7.0
1+
5.8.0

android/sdl_android/build.gradle

Lines changed: 29 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,32 @@
1-
apply plugin: 'com.android.library'
1+
buildscript {
2+
repositories {
3+
mavenCentral()
4+
}
5+
dependencies {
6+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
7+
}
8+
}
9+
10+
plugins {
11+
id "com.android.library"
12+
id "com.vanniktech.maven.publish" version "0.35.0"
13+
}
14+
15+
group = "com.smartdevicelink"
16+
version = file("../../VERSION").text.trim()
17+
18+
mavenPublishing {
19+
publishToMavenCentral()
20+
signAllPublications()
21+
}
222

323
android {
424
compileSdkVersion 36
525
defaultConfig {
626
minSdkVersion 21
727
targetSdkVersion 36
28+
versionCode 27
29+
versionName new File(projectDir.path, ('/../../VERSION')).text.trim()
830
buildConfigField "String", "VERSION_NAME", '\"' + versionName + '\"'
931
resValue "string", "SDL_LIB_VERSION", '\"' + versionName + '\"'
1032
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
@@ -65,14 +87,10 @@ dependencies {
6587
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.7.0'
6688
}
6789

68-
buildscript {
69-
repositories {
70-
mavenCentral()
71-
}
72-
dependencies {
73-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
74-
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.34.0'
90+
afterEvaluate {
91+
tasks.named("sourceReleaseJar") {
92+
exclude { details ->
93+
details.file.toPath().toString().contains("/generated/")
94+
}
7595
}
76-
}
77-
78-
apply plugin: "com.vanniktech.maven.publish"
96+
}

android/sdl_android/gradle.properties

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,6 @@ POM_LICENCE_NAME=BSD 3-Clause
1616
POM_LICENCE_URL=https://opensource.org/licenses/BSD-3-Clause
1717
POM_LICENCE_DIST=repo
1818

19-
RELEASE_REPOSITORY_URL=https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/
20-
SNAPSHOT_REPOSITORY_URL=https://s01.oss.sonatype.org/content/repositories/snapshots/
21-
2219
POM_DEVELOPER_ID=
2320
POM_DEVELOPER_NAME=
2421
POM_DEVELOPER_URL=
25-
26-
signing.keyId=
27-
signing.password=
28-
signing.secretKeyRingFile=
29-
SONATYPE_NEXUS_USERNAME=
30-
SONATYPE_NEXUS_PASSWORD=

javaSE/javaSE/src/main/java/com/smartdevicelink/BuildConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232

3333
// THIS FILE IS AUTO GENERATED, DO NOT MODIFY!!
3434
public final class BuildConfig {
35-
public static final String VERSION_NAME = "5.7.0";
35+
public static final String VERSION_NAME = "5.8.0";
3636
}

0 commit comments

Comments
 (0)