blob: ea68cc81763acaefefdf5cf06e4089be20885aff [file] [log] [blame]
Ian Lake05bfb982018-04-03 15:18:58 -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
Sergey Vasilinets98971a72018-04-18 10:33:33 -070017import androidx.build.LibraryGroups
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070018import androidx.build.Publish
Ian Lake05bfb982018-04-03 15:18:58 -070019
20plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010021 id("AndroidXPlugin")
22 id("com.android.library")
Ian Lake05bfb982018-04-03 15:18:58 -070023 id("org.jetbrains.kotlin.android")
24}
25
Ian Lake05bfb982018-04-03 15:18:58 -070026dependencies {
Ian Lakec4ae7e62018-04-12 14:36:09 -070027 api(project(":navigation:navigation-fragment"))
Ian Lake05bfb982018-04-03 15:18:58 -070028}
29
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070030androidx {
Ian Lake05bfb982018-04-03 15:18:58 -070031 name = "Android Navigation Fragment Kotlin Extensions"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070032 publish = Publish.SNAPSHOT_AND_RELEASE
Ian Lake05bfb982018-04-03 15:18:58 -070033 mavenGroup = LibraryGroups.NAVIGATION
34 inceptionYear = "2018"
35 description = "Android Navigation-Fragment-Ktx"
Ian Lake05bfb982018-04-03 15:18:58 -070036}
37