Skip to content
Open
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
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -141,6 +141,9 @@ tasks.withType(Test) {
}

sentry {
autoInstallation {
sentryVersion.set("8.44.1")
}
autoUpload = true
uploadNativeSymbols = true
includeNativeSources = true
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@
<meta-data
android:name="io.sentry.metrics.enabled"
android:value="true" />
<meta-data
android:name="io.sentry.standalone-app-start-tracing.enable"
android:value="true" />

<provider
android:exported="false"
Expand Down
Loading