1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-07 21:37:02 +09:00
anytype-kotlin/crash-reporting/build.gradle

29 lines
No EOL
726 B
Groovy

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