blob: 7297aaeda20bf6fb13765ec55b977a8830567a39 [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.
*/
import androidx.build.Publish
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("kotlin-android")
}
android {
defaultConfig {
multiDexEnabled true
}
namespace "androidx.paging.runtime"
}
dependencies {
//Atomic Group
constraints {
implementation(project(":paging:paging-common"))
}
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(projectOrArtifact(":lifecycle:lifecycle-runtime-testing"))
androidTestImplementation(libs.testCore)
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.testRunner)
androidTestImplementation("androidx.arch.core:core-testing:2.1.0")
androidTestImplementation(libs.truth)
androidTestImplementation(libs.kotlinTest)
androidTestImplementation(libs.kotlinCoroutinesTest)
androidTestImplementation(libs.junit)
androidTestImplementation(libs.multidex)
samples(project(":paging:paging-samples"))
}
androidx {
name = "Android Paging-Runtime"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenGroup = LibraryGroups.PAGING
inceptionYear = "2017"
description = "Android Paging-Runtime"
legacyDisableKotlinStrictApiMode = true
}