blob: f27bf386348401ed883dc491b8115ebd18252e8e [file] [log] [blame]
Ian Laked6d635b2018-04-03 12:57:17 -07001/*
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 Ismaila3085e1e2024-04-23 19:11:16 +010024import androidx.build.LibraryType
Ian Laked6d635b2018-04-03 12:57:17 -070025
26plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010027 id("AndroidXPlugin")
28 id("com.android.library")
Ian Laked6d635b2018-04-03 12:57:17 -070029 id("org.jetbrains.kotlin.android")
30}
31
Ian Laked6d635b2018-04-03 12:57:17 -070032dependencies {
Ian Lakec4ae7e62018-04-12 14:36:09 -070033 api(project(":navigation:navigation-runtime"))
Ian Laked6d635b2018-04-03 12:57:17 -070034}
35
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070036androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040037 name = "Navigation Runtime Kotlin Extensions"
Omar Ismaila3085e1e2024-04-23 19:11:16 +010038 type = LibraryType.PUBLISHED_LIBRARY_ONLY_USED_BY_KOTLIN_CONSUMERS
Ian Laked6d635b2018-04-03 12:57:17 -070039 inceptionYear = "2018"
40 description = "Android Navigation-Runtime-Ktx"
Ian Laked6d635b2018-04-03 12:57:17 -070041}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070042
43android {
Aurimas Liutikas77952822024-12-04 18:00:17 -080044 namespace = "androidx.navigation.ktx"
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070045}