blob: 49523a73e47be5da6a2de509fe821e221add6b39 [file] [log] [blame]
Dustin Lamf4ac93d2020-01-06 17:30:32 -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 */
Jelle Fresen4a13c562021-11-26 16:50:44 +000024import androidx.build.LibraryType
Dustin Lam34f31e42020-04-28 23:45:46 -070025
Dustin Lamf4ac93d2020-01-06 17:30:32 -080026plugins {
27 id("AndroidXPlugin")
Dustin Lamf4ac93d2020-01-06 17:30:32 -080028}
29
Veyndan Stuart89b052d2023-07-04 21:22:48 +000030androidXMultiplatform {
31 jvm()
32 mac()
33 linux()
34 ios()
Clara Foka337f6a2024-07-31 10:19:52 -070035 watchos()
36 tvos()
Veyndan Stuart89b052d2023-07-04 21:22:48 +000037
38 sourceSets {
39 commonMain {
40 dependencies {
41 api(libs.kotlinStdlib)
42 implementation(project(":paging:paging-common"))
43 implementation(libs.kotlinTest)
44 }
45 }
46 }
Dustin Lamf4ac93d2020-01-06 17:30:32 -080047}
Dustin Lam34f31e42020-04-28 23:45:46 -070048
Jelle Fresen4a13c562021-11-26 16:50:44 +000049androidx {
50 type = LibraryType.INTERNAL_TEST_LIBRARY
51}