From f0a3acf4fc02110911df4fde72ae970322006cf0 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Fri, 19 Aug 2022 13:45:48 +0530 Subject: [PATCH] {seedvault|storage}: Add explicit dependencies for kotlin coroutines Signed-off-by: Aayush Gupta --- Android.bp | 2 ++ storage/lib/Android.bp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Android.bp b/Android.bp index ba382399..951547cd 100644 --- a/Android.bp +++ b/Android.bp @@ -32,6 +32,8 @@ android_app { "androidx.lifecycle_lifecycle-livedata-ktx", "androidx-constraintlayout_constraintlayout", "com.google.android.material_material", + "kotlinx-coroutines-android", + "kotlinx-coroutines-core", // storage backup lib "seedvault-lib-storage", // koin diff --git a/storage/lib/Android.bp b/storage/lib/Android.bp index 88113b1d..afb15df2 100644 --- a/storage/lib/Android.bp +++ b/storage/lib/Android.bp @@ -22,6 +22,8 @@ android_library { "androidx.room_room-runtime", "androidx-constraintlayout_constraintlayout", "com.google.android.material_material", + "kotlinx-coroutines-android", + "kotlinx-coroutines-core", ], plugins: [ "androidx.room_room-compiler-plugin",