Skip to content

Commit d6dec00

Browse files
authored
Prep for release 1.8.1 + fixes to go in the patch (#1105)
* Prep for release 1.8.1 * downgrade androidx to allow lower compileSDK (#1103) (cherry picked from commit b6d1558)
1 parent 8d4333c commit d6dec00

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

.github/renovate.json5

+9
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,15 @@
5757
{
5858
"matchPackagePrefixes": ["io.opentelemetry.instrumentation"],
5959
"groupName": "upstream otel instrumentation"
60+
},
61+
{
62+
// Various androidx libraries released after Aug 7th, 2024 requires android compileSDK 35,
63+
// forcing customers to require the same and further to upgrade their AGP and gradle
64+
"matchPackageNames": [
65+
"androidx.core:core",
66+
"androidx.work:work-runtime"
67+
],
68+
"enabled": false
6069
}
6170
]
6271
}

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
### Unreleased
99

10+
### Version 1.8.1 - 2024-12-06
11+
12+
Reducing the version of androidx libraries that enforce API level 35.
13+
1014
### Version 1.8.0 - 2024-12-04
1115

1216
This is a regular maintenance release.

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
1717
android.useAndroidX=true
1818

1919
# generate the BuildConfig class that contains the app version
20-
version=1.8.0
20+
version=1.8.1
2121
group=com.splunk

gradle/libs.versions.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ opentelemetry-sdk-testing = { module = "io.opentelemetry:opentelemetry-sdk-testi
3131
zipkin-sender-okhttp = "io.zipkin.reporter2:zipkin-sender-okhttp3:3.4.2"
3232

3333
androidx-browser = "androidx.browser:browser:1.8.0"
34-
androidx-core = "androidx.core:core:1.15.0"
34+
androidx-core = "androidx.core:core:1.13.1"
3535
androidx-navigation-fragment = "androidx.navigation:navigation-fragment:2.7.7"
3636
androidx-navigation-ui = "androidx.navigation:navigation-ui:2.7.7"
37-
androidx-work = "androidx.work:work-runtime:2.10.0"
37+
androidx-work = "androidx.work:work-runtime:2.9.1"
3838
androidx-webkit = "androidx.webkit:webkit:1.12.1"
3939

4040
# Volley

sample-app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ localProperties.load(FileInputStream(rootProject.file("local.properties")))
1313
android {
1414
namespace = "com.splunk.android.sample"
1515

16-
compileSdk = 35
16+
compileSdk = 34
1717
buildToolsVersion = "34.0.0"
1818

1919
defaultConfig {

splunk-otel-android-volley/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
android {
1010
namespace = "com.splunk.android.rum.volley"
1111

12-
compileSdk = 35
12+
compileSdk = 34
1313
buildToolsVersion = "34.0.0"
1414

1515
defaultConfig {

splunk-otel-android/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
android {
88
namespace = "com.splunk.android.rum"
99

10-
compileSdk = 35
10+
compileSdk = 34
1111
buildToolsVersion = "34.0.0"
1212

1313
defaultConfig {

0 commit comments

Comments
 (0)