1// This  library is mainly used for fakes which will be shared across are various types of tests
2// unit/robo/screenshot etc.
3//
4// This library shouldn't have many dependencies.
5package {
6    default_team: "trendy_team_android_settings_app",
7}
8
9android_library {
10    name: "FingerprintManagerInteractor",
11    srcs: [
12        "**/*.kt",
13    ],
14    static_libs: [
15        "BiometricsSharedLib",
16        "kotlinx-coroutines-android",
17    ],
18}
19