cdf0f30c61
* fix: touch up `PasswordEntryTest` KDoc * feat: add format-common-impl module * refactor: switch app to format-common-impl * refactor: move `format-common` tests to `format-common-impl` * feat: add a test for Steam OTP
17 lines
580 B
Text
17 lines
580 B
Text
plugins {
|
|
id("com.github.android-password-store.android-library")
|
|
id("com.github.android-password-store.kotlin-android")
|
|
id("com.github.android-password-store.kotlin-library")
|
|
}
|
|
|
|
android { namespace = "app.passwordstore.format.common.impl" }
|
|
|
|
dependencies {
|
|
api(projects.formatCommon)
|
|
implementation(libs.dagger.hilt.core)
|
|
testImplementation(projects.coroutineUtilsTesting)
|
|
testImplementation(libs.bundles.testDependencies)
|
|
testImplementation(libs.kotlin.coroutines.test)
|
|
testImplementation(libs.testing.robolectric)
|
|
testImplementation(libs.testing.turbine)
|
|
}
|