blob: 61c235a70452fb95114fe21bb90334e1e184fa7c [file] [log] [blame]
Tyson Henningf1ae0062018-01-31 16:31:10 -08001/*
2 * Copyright (C) 2018 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
Tiem Songee0da742024-01-03 14:08:46 -080017/**
18 * This file was created using the `create_project.py` script located in the
19 * `<AndroidX root>/development/project-creator` directory.
20 *
21 * Please use that script when creating a new project, rather than copying an existing project and
22 * modifying its settings.
23 */
Omar Ismail86e66062024-05-03 16:10:50 +010024import androidx.build.LibraryType
Tyson Henningf1ae0062018-01-31 16:31:10 -080025
26plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010027 id("AndroidXPlugin")
28 id("com.android.library")
Daniel Santiago Rivera4cef8c82024-07-26 15:30:12 -040029 id("org.jetbrains.kotlin.android")
Tyson Henningf1ae0062018-01-31 16:31:10 -080030}
31
32dependencies {
Alan Viverette6c563342018-03-08 18:02:39 -050033 api(project(":room:room-common"))
Oussama Ben Abdelbaki1d227a12018-11-21 08:09:55 -050034 api(project(":room:room-runtime")) {
Jim Sproch9e38b4f2021-01-06 14:21:06 -080035 exclude group: "com.google.guava", module: "listenablefuture"
Oussama Ben Abdelbaki1d227a12018-11-21 08:09:55 -050036 }
Jeremy Woods5dc7b572023-05-01 22:46:22 +000037 implementation("androidx.arch.core:core-runtime:2.2.0")
Aurimas Liutikas96f0b302024-07-25 15:49:23 -070038 api("androidx.annotation:annotation:1.8.1")
Ian Lakeae48ec22019-09-26 15:57:41 -070039 implementation("androidx.concurrent:concurrent-futures:1.0.0")
Daniel Santiago Rivera7444e3b2024-07-29 09:28:02 -040040 implementation(libs.kotlinCoroutinesGuava) {
41 exclude group: "com.google.guava", module: "guava"
42 }
Aurimas Liutikas1a0e7b12021-05-04 12:55:40 -070043 androidTestImplementation(libs.testRunner)
44 androidTestImplementation(libs.truth)
Tyson Henningf1ae0062018-01-31 16:31:10 -080045}
46
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070047androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040048 name = "Room Guava"
Omar Ismail86e66062024-05-03 16:10:50 +010049 type = LibraryType.PUBLISHED_LIBRARY
Tyson Henningf1ae0062018-01-31 16:31:10 -080050 inceptionYear = "2018"
51 description = "Android Room Guava"
Alex Saveaub50d5002020-07-14 05:25:54 +000052}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070053
54android {
Aurimas Liutikas77952822024-12-04 18:00:17 -080055 namespace = "androidx.room.guava"
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070056}