mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-07 21:37:02 +09:00
25 lines
No EOL
549 B
Groovy
25 lines
No EOL
549 B
Groovy
plugins {
|
|
id "com.android.library"
|
|
id "kotlin-android"
|
|
id "kotlin-kapt"
|
|
}
|
|
|
|
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
|
|
} |