From 115d005e31060e2be43d9cde7e8afe011db12349 Mon Sep 17 00:00:00 2001 From: Roman Zavarnitsyn Date: Mon, 22 Jun 2026 19:08:21 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20Sentry=20Gradle=20plugin=206.10.0=20?= =?UTF-8?q?=E2=86=92=206.12.0,=20SDK=20=E2=86=92=208.44.1,=20native-ndk=20?= =?UTF-8?q?=E2=86=92=200.15.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Gradle plugin: 6.10.0 → 6.12.0 - SDK pinned to 8.44.1 via autoInstallation - sentry-native-ndk: 0.14.2 → 0.15.1 - Enable standalone app start tracing (new in SDK 8.44.0) --- app/build.gradle | 7 +++++-- app/src/main/AndroidManifest.xml | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8c66a81..26d17c9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ import io.sentry.android.gradle.instrumentation.logcat.LogcatLevel plugins { - id "io.sentry.android.gradle" version "6.10.0" + id "io.sentry.android.gradle" version "6.12.0" id 'com.android.application' id 'kotlin-android' id 'com.ydq.android.gradle.native-aar.import' @@ -83,7 +83,7 @@ android { dependencies { // This should be included by default in the Android SDK, but it seems to be a problem with v8+ of the SDK, so we have to manually add it - implementation 'io.sentry:sentry-native-ndk:0.14.2' + implementation 'io.sentry:sentry-native-ndk:0.15.1' implementation 'androidx.appcompat:appcompat:1.3.0' implementation group: 'androidx.constraintlayout', name: 'constraintlayout', version: '1.1.3' implementation 'com.google.android.material:material:1.0.0' @@ -141,6 +141,9 @@ tasks.withType(Test) { } sentry { + autoInstallation { + sentryVersion.set("8.44.1") + } autoUpload = true uploadNativeSymbols = true includeNativeSources = true diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 1d2e55a..4cc765e 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -108,6 +108,9 @@ +