blob: 8c04412a1f981c2426626c96fe10159e5d874dd6 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* This file was created using the `create_project.py` script located in the
* `<AndroidX root>/development/project-creator` directory.
*
* Please use that script when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
import androidx.build.LibraryType
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("kotlin-android")
}
android {
defaultConfig {
multiDexEnabled true
}
namespace "androidx.paging.runtime"
}
dependencies {
api(project(":paging:paging-common"))
// Ensure that the -ktx dependency graph mirrors the Java dependency graph
api(project(":paging:paging-common-ktx"))
api("androidx.lifecycle:lifecycle-livedata-ktx:2.4.0")
api("androidx.lifecycle:lifecycle-runtime-ktx:2.4.0")
api("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0")
api("androidx.recyclerview:recyclerview:1.2.1")
api(libs.kotlinStdlib)
api(libs.kotlinCoroutinesAndroid)
implementation("androidx.core:core-ktx:1.7.0")
androidTestImplementation(project(":internal-testutils-common"))
androidTestImplementation(project(":internal-testutils-ktx"))
androidTestImplementation(project(":internal-testutils-paging"))
androidTestImplementation(project(":paging:paging-testing"))
androidTestImplementation(projectOrArtifact(":lifecycle:lifecycle-runtime-testing"))
androidTestImplementation(libs.testCore)
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.testRunner)
androidTestImplementation("androidx.arch.core:core-testing:2.2.0")
androidTestImplementation(libs.truth)
androidTestImplementation(libs.kotlinTest)
androidTestImplementation(libs.kotlinCoroutinesTest)
androidTestImplementation(libs.junit)
androidTestImplementation(libs.multidex)
}
androidx {
name = "Paging-Runtime"
type = LibraryType.PUBLISHED_LIBRARY
inceptionYear = "2017"
description = "Android Paging-Runtime"
legacyDisableKotlinStrictApiMode = true
metalavaK2UastEnabled = true
samples(project(":paging:paging-samples"))
}