diff --git a/CHANGELOG.md b/CHANGELOG.md index f138e580..0f599f47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ - Bump Cocoa SDK from v8.56.2 to v8.57.0 ([#419](https://github.com/getsentry/sentry-godot/pull/419)) - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8570) - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.2...8.57.0) +- Bump Sentry Android from v8.23.0 to v8.24.0 ([#424](https://github.com/getsentry/sentry-godot/pull/424)) + - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8240) + - [diff](https://github.com/getsentry/sentry-java/compare/8.23.0...8.24.0) ## 1.0.0 diff --git a/android_lib/build.gradle.kts b/android_lib/build.gradle.kts index 38a54636..98723d7d 100644 --- a/android_lib/build.gradle.kts +++ b/android_lib/build.gradle.kts @@ -38,7 +38,7 @@ dependencies { testImplementation("junit:junit:4.13.2") // NOTE: All dependencies below must be also updated in sentry_editor_export_plugin.cpp. - implementation("io.sentry:sentry-android:8.23.0") + implementation("io.sentry:sentry-android:8.24.0") } val copyDebugAarToProject by tasks.registering(Copy::class) { diff --git a/src/editor/sentry_editor_export_plugin_android.cpp b/src/editor/sentry_editor_export_plugin_android.cpp index 14388be1..6a3f6ace 100644 --- a/src/editor/sentry_editor_export_plugin_android.cpp +++ b/src/editor/sentry_editor_export_plugin_android.cpp @@ -22,7 +22,7 @@ PackedStringArray SentryEditorExportPluginAndroid::_get_android_libraries(const PackedStringArray SentryEditorExportPluginAndroid::_get_android_dependencies(const Ref &p_platform, bool p_debug) const { PackedStringArray deps; // NOTE: All dependencies below must be also updated in build.gradle.kts. - deps.append("io.sentry:sentry-android:8.23.0"); + deps.append("io.sentry:sentry-android:8.24.0"); return deps; }