Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## Version 1.3.0 (2026-04-22)

### ⚠️⚠️ Breaking changes

- The minimum supported Android SDK version has been increased from 21 to 23
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ from all other opentelemetry dependencies:
```kotlin
dependencies {
//...
api(platform("io.opentelemetry.android:opentelemetry-android-bom:1.2.0-alpha"))
api(platform("io.opentelemetry.android:opentelemetry-android-bom:1.3.0-alpha"))
implementation("io.opentelemetry.android:android-agent") // Version is resolved through the BOM
//...
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ android.useAndroidX=true
android.minSdk=23
android.minCompileSdk=34
android.compileSdk=36
version=1.3.0
version=1.4.0
group=io.opentelemetry.android
2 changes: 1 addition & 1 deletion instrumentation/activity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:activity:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:activity:1.3.0-alpha")
```
4 changes: 2 additions & 2 deletions instrumentation/android-log/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ plugins {
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:android-log-library:1.2.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:android-log-agent:1.2.0-alpha") // <2>
implementation("io.opentelemetry.android.instrumentation:android-log-library:1.3.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:android-log-agent:1.3.0-alpha") // <2>
```
2 changes: 1 addition & 1 deletion instrumentation/anr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:anr:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:anr:1.3.0-alpha")
```
2 changes: 1 addition & 1 deletion instrumentation/compose/click/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ This instrumentation produces the following telemetry:
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:compose-click:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:compose-click:1.3.0-alpha")
```
2 changes: 1 addition & 1 deletion instrumentation/crash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:crash:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:crash:1.3.0-alpha")
```
2 changes: 1 addition & 1 deletion instrumentation/fragment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:fragment:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:fragment:1.3.0-alpha")
```
4 changes: 2 additions & 2 deletions instrumentation/httpurlconnection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ plugins {
#### Project dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:httpurlconnection-library:1.2.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:httpurlconnection-agent:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:httpurlconnection-library:1.3.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:httpurlconnection-agent:1.3.0-alpha")
```

### Configurations
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/network/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:network:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:network:1.3.0-alpha")
```
4 changes: 2 additions & 2 deletions instrumentation/okhttp3-websocket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ plugins {
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:okhttp3-websocket-library:1.2.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:okhttp3-websocket-agent:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:okhttp3-websocket-library:1.3.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:okhttp3-websocket-agent:1.3.0-alpha")
```
4 changes: 2 additions & 2 deletions instrumentation/okhttp3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ plugins {
#### Project dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:okhttp3-library:1.2.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:okhttp3-agent:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:okhttp3-library:1.3.0-alpha")
byteBuddy("io.opentelemetry.android.instrumentation:okhttp3-agent:1.3.0-alpha")
```

After adding the plugin and the dependencies to your project, your OkHttp requests will be traced
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/sessions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:sessions:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:sessions:1.3.0-alpha")
```

1. You can find the latest version [here](https://central.sonatype.com/artifact/io.opentelemetry.android.instrumentation/sessions).
2 changes: 1 addition & 1 deletion instrumentation/slowrendering/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:slowrendering:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:slowrendering:1.3.0-alpha")
```
2 changes: 1 addition & 1 deletion instrumentation/startup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ manually install this instrumentation by following the steps below.
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:startup:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:startup:1.3.0-alpha")
```
2 changes: 1 addition & 1 deletion instrumentation/view-click/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ This instrumentation produces the following telemetry:
### Adding dependencies

```kotlin
implementation("io.opentelemetry.android.instrumentation:view-click:1.2.0-alpha")
implementation("io.opentelemetry.android.instrumentation:view-click:1.3.0-alpha")
```
Loading