2021-12-09 16:30:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
2021-12-10 09:44:38 +00:00
|
|
|
id("com.github.android-password-store.android-library")
|
|
|
|
id("com.github.android-password-store.kotlin-android")
|
2021-12-09 16:30:33 +00:00
|
|
|
id("com.github.android-password-store.kotlin-library")
|
|
|
|
}
|
|
|
|
|
2021-12-10 09:44:38 +00:00
|
|
|
android { sourceSets { getByName("test") { resources.srcDir("src/main/res/raw") } } }
|
|
|
|
|
2021-12-09 16:30:33 +00:00
|
|
|
dependencies {
|
|
|
|
implementation(libs.dagger.hilt.core)
|
|
|
|
testImplementation(libs.bundles.testDependencies)
|
|
|
|
}
|