1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5android_library { 6 name: "android_onboarding.tasks", 7 manifest: ":android_onboarding.AndroidManifest", 8 srcs: [ 9 "**/*.kt", 10 "aidl/**/*.aidl", 11 ], 12 dont_merge_manifests: true, 13 aidl: { 14 include_dirs: [ 15 "frameworks/native/aidl/binder", 16 ], 17 export_include_dirs: ["aidl"], 18 }, 19 static_libs: [ 20 "android_onboarding.contracts.annotations", 21 "androidx.activity_activity-ktx", 22 "androidx.annotation_annotation", 23 "error_prone_annotations", 24 "kotlinx_coroutines", 25 "kotlinx_coroutines_guava", 26 ], 27} 28