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

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,17 @@ ${next_release_notes}
[float]
===== Features

* Adding consumer R8 rules to address R8 full mode: {pull}309[#309]
* New feature: {pull}000[#000]
////

[[release-notes-0.17.0]]
==== 0.17.0 - 2024/05/17

[float]
===== Features

* Adding consumer R8 rules to address R8 full mode: {pull}309[#309]

[[release-notes-0.16.0]]
==== 0.16.0 - 2024/04/03

Expand Down
6 changes: 3 additions & 3 deletions docs/setup.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ You can skip this step if your `minSdkVersion` is 26 or higher.
[[adding-gradle-plugin]]
==== Add the Elastic Agent Gradle plugin

To automatically instrument <<supported-technologies,Supported Technologies>>, add the https://plugins.gradle.org/plugin/co.elastic.apm.android/0.16.0[Elastic APM agent plugin] to your application's `build.gradle` file as shown below:
To automatically instrument <<supported-technologies,Supported Technologies>>, add the https://plugins.gradle.org/plugin/co.elastic.apm.android/0.17.0[Elastic APM agent plugin] to your application's `build.gradle` file as shown below:

[source,groovy]
----
// Android app's build.gradle file
plugins {
id "com.android.application"
id "co.elastic.apm.android" version "0.16.0"
id "co.elastic.apm.android" version "0.17.0"
}
----

Expand Down Expand Up @@ -122,7 +122,7 @@ Add the Elastic APM agent SDK to your application's `build.gradle` file as shown
----
// Android app's build.gradle file
dependencies {
implementation "co.elastic.apm:android-sdk:0.16.0"
implementation "co.elastic.apm:android-sdk:0.17.0"
}
----

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Wed Apr 03 14:24:32 UTC 2024
#Fri May 17 13:11:02 UTC 2024
androidGradlePlugin_version=8.2.0
description=APM for Android applications with the Elastic stack
org.gradle.jvmargs=-XX\:MaxMetaspaceSize\=2G
version=0.17.0
version=0.18.0
android.useAndroidX=true
group=co.elastic.apm