blob: 4894866e037bd22c74657016e3e3d660bb3dc235 [file] [log] [blame]
Rahul Ravikumar1f376232020-04-06 16:36:21 -07001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Rahul Ravikumar1f376232020-04-06 16:36:21 -070017import androidx.build.Publish
18
Rahul Ravikumar1f376232020-04-06 16:36:21 -070019plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
22 id("kotlin-android")
23}
24
Rahul Ravikumar1f376232020-04-06 16:36:21 -070025dependencies {
26 api(project(":work:work-runtime"))
Aurimas Liutikas47d21142021-05-04 14:05:28 -070027 api(libs.rxjava3)
Sergey Vasilinets5296cbf2021-10-28 16:02:20 +010028 testImplementation(libs.truth)
Aurimas Liutikas47d21142021-05-04 14:05:28 -070029 testImplementation(libs.junit)
30 testImplementation(libs.kotlinStdlib)
31 testImplementation(libs.mockitoCore)
Rahul Ravikumar1f376232020-04-06 16:36:21 -070032}
33
34androidx {
35 name = "Android WorkManager RxJava3 Support"
36 publish = Publish.SNAPSHOT_AND_RELEASE
37 mavenGroup = LibraryGroups.WORK
38 inceptionYear = "2020"
39 description = "Android WorkManager RxJava3 interoperatibility library"
Alex Saveaub50d5002020-07-14 05:25:54 +000040}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070041
42android {
43 namespace "androidx.work.rxjava3"
44}