Skip to content

Commit 70e762d

Browse files
authored
chore(android): prepare sdk release 0.16.1 (#3258)
1 parent 648538b commit 70e762d

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

android/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [android-v0.16.0] - 2026-02-18
8+
## [android-v0.16.1] - 2026-03-04
9+
10+
### :bug: Bug fixes
11+
12+
- (**android**): Trigger session start event reliably (#3252) by @abhaysood in #3252
13+
14+
### :hammer: Misc
15+
16+
- (**android**): Use ISO 8601 for session start time attribute (#3247) by @abhaysood in #3247
17+
- (**android**): Add session start time attr to events and spans (#3246) by @abhaysood in #3246
18+
- (**android**): Handle http_sampling_rate dynamic config (#3229) by @abhaysood in #3229
19+
- (**android**): Upload mapping file artifact in sample app build (#3244) by @abhaysood in #3244
20+
- (**android**): Allow configuring sample app credentials (#3243) by @abhaysood in #3243
21+
- (**android**): Set next development version (#3150) by @abhaysood in #3150
22+
23+
## [android-v0.16.0] - 2026-02-19
924

1025
### :sparkles: New features
1126

@@ -21,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2136

2237
### :hammer: Misc
2338

39+
- (**android**): Prepare sdk release 0.16.0 (#3140) by @abhaysood in #3140
2440
- (**android**): Add demo page for testing http configs (#3113) by @abhaysood in #3113
2541
- (**android**): Fix database schema version (#3105) by @abhaysood in #3105
2642
- (**android**): Add baseline profile CI infrastructure (#3095) by @abhaysood in #3095
@@ -850,6 +866,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
850866
- (**android**): Add missing links to readme by @abhaysood
851867
- (**android**): Create a template for Android SDK documentation by @abhaysood
852868

869+
[android-v0.16.1]: https://github.com/measure-sh/measure/compare/android-v0.16.0..android-v0.16.1
853870
[android-v0.16.0]: https://github.com/measure-sh/measure/compare/android-v0.15.1..android-v0.16.0
854871
[android-v0.15.1]: https://github.com/measure-sh/measure/compare/android-v0.15.0..android-v0.15.1
855872
[android-v0.15.0]: https://github.com/measure-sh/measure/compare/android-v0.14.0..android-v0.15.0

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ kotlin.code.style=official
1515

1616
GROUP=sh.measure
1717
MEASURE_ARTIFACT_ID=measure-android
18-
MEASURE_VERSION_NAME=0.17.0-SNAPSHOT
18+
MEASURE_VERSION_NAME=0.16.1
1919

2020
RELEASE_SIGNING_ENABLED = true

android/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android-tools = "31.13.0"
1111
kotlin = "1.9.21"
1212
# Use the latest snapshot (local maven) version of measure-android for
1313
# gradle plugin functional tests
14-
measure-android = "0.17.0-SNAPSHOT"
14+
measure-android = "0.16.1"
1515
androidx-navigation = "2.9.5"
1616
androidx-activity = "1.10.1"
1717
androidx-fragment-ktx = "1.8.9"

docs/sdk-integration-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,13 @@ measure {
175175
Add the following to your app's `build.gradle.kts` file.
176176

177177
```kotlin
178-
implementation("sh.measure:measure-android:0.16.0")
178+
implementation("sh.measure:measure-android:0.16.1")
179179
```
180180

181181
or, add the following to your app's `build.gradle` file.
182182

183183
```groovy
184-
implementation 'sh.measure:measure-android:0.16.0'
184+
implementation 'sh.measure:measure-android:0.16.1'
185185
```
186186

187187
### Initialize the SDK

0 commit comments

Comments
 (0)