diff --git a/CHANGELOG.md b/CHANGELOG.md index a2ee6f35..a6c48301 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,9 +29,9 @@ - Bump Native SDK from v0.9.1 to v0.10.0 ([#311](https://github.com/getsentry/sentry-godot/pull/311)) - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0100) - [diff](https://github.com/getsentry/sentry-native/compare/0.9.1...0.10.0) -- Bump Sentry Android from v8.18.0 to v8.19.0 ([#312](https://github.com/getsentry/sentry-godot/pull/312)) - - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8190) - - [diff](https://github.com/getsentry/sentry-java/compare/8.18.0...8.19.0) +- Bump Sentry Android from v8.18.0 to v8.19.1 ([#312](https://github.com/getsentry/sentry-godot/pull/312), [#315](https://github.com/getsentry/sentry-godot/pull/315)) + - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8191) + - [diff](https://github.com/getsentry/sentry-java/compare/8.18.0...8.19.1) ## 1.0.0-alpha.3 diff --git a/android_lib/build.gradle.kts b/android_lib/build.gradle.kts index a05850f0..d261d0a4 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.19.0") + implementation("io.sentry:sentry-android:8.19.1") } 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 9b189a1e..0b01fb29 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.19.0"); + deps.append("io.sentry:sentry-android:8.19.1"); return deps; }