1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00
anytype-kotlin/analytics/build.gradle

25 lines
No EOL
561 B
Groovy

plugins {
id "com.android.library"
id "kotlin-android"
id 'com.google.devtools.ksp'
}
android {
buildTypes {
release {
buildConfigField "boolean", "SEND_EVENTS", "true"
}
debug {
buildConfigField "boolean", "SEND_EVENTS", getProperty('config.enableAnalyticsForDebugBuilds')
}
}
namespace 'com.anytypeio.anytype.analytics'
}
dependencies {
implementation libs.kotlin
implementation libs.coroutinesAndroid
implementation libs.timber
implementation libs.amplitude
}