smalltalk-matrix/features/profile/build.gradle

23 lines
661 B
Groovy
Raw Permalink Normal View History

2022-12-11 13:49:48 +01:00
plugins {
id "st-feature-conventions"
}
2022-02-24 22:55:56 +01:00
android {
namespace "app.dapk.st.profile"
}
2022-02-24 22:55:56 +01:00
dependencies {
implementation "chat-engine:chat-engine"
2022-02-24 22:55:56 +01:00
implementation project(":features:settings")
2022-11-28 19:57:50 +01:00
implementation 'screen-state:screen-android'
implementation project(":domains:android:compose-core")
2022-02-24 22:55:56 +01:00
implementation project(":design-library")
implementation project(":core")
2022-11-07 21:53:35 +01:00
kotlinTest(it)
2022-11-28 19:57:50 +01:00
testImplementation 'screen-state:state-test'
2022-12-05 23:48:38 +01:00
testImplementation 'chat-engine:chat-engine-test'
2022-11-07 21:53:35 +01:00
androidImportFixturesWorkaround(project, project(":core"))
androidImportFixturesWorkaround(project, project(":domains:android:stub"))
2022-02-24 22:55:56 +01:00
}