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

36 lines
No EOL
902 B
Groovy

plugins {
id "com.android.library"
id "kotlin-android"
}
android {
buildFeatures {
viewBinding true
}
namespace 'com.anytypeio.anytype.library_page_icon_picker_widget'
}
dependencies {
implementation project(':core-utils')
implementation project(':core-ui')
implementation project(':presentation')
implementation project(':library-emojifier')
implementation libs.appcompat
implementation libs.kotlin
implementation libs.coroutinesAndroid
implementation libs.androidxCore
implementation libs.emojiCompat
implementation libs.design
implementation libs.recyclerView
implementation libs.constraintLayout
implementation libs.timber
implementation libs.glide
testImplementation libs.junit
testImplementation libs.kotlinTest
testImplementation libs.robolectric
testImplementation libs.androidXTestCore
}