1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00
anytype-kotlin/crash-reporting/build.gradle
Allan Quatermain 5ee6443ebb
DROID-979 App | Tech | Setup sentry (#3002)
DROID-979 App | Tech | Setup sentry
2023-03-16 19:19:24 +03:00

25 lines
No EOL
603 B
Groovy

plugins {
id "com.android.library"
id "kotlin-android"
id "io.sentry.android.gradle" version "3.4.2"
}
android {
sentry {
includeProguardMapping = true
autoUploadProguardMapping = true
experimentalGuardsquareSupport = false
uploadNativeSymbols = false
includeNativeSources = false
autoInstallation {
enabled = true
sentryVersion = libs.versions.sentryVersion
}
includeDependenciesReport = true
}
}
dependencies {
implementation libs.sentry
implementation project(path: ':core-utils')
}