blob: c0d5630796a91b1b1c67f1632c85e79e6d285a4b [file] [log] [blame]
Daniel Santiago Rivera7bc85762020-12-04 15:50:36 -08001/*
2 * Copyright 2020 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
Daniel Santiago Rivera7bc85762020-12-04 15:50:36 -080017import androidx.build.Publish
18
19plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
22 id("kotlin-android")
23 id("kotlin-kapt")
24}
25
26dependencies {
Aurimas Liutikas7f247902021-05-19 08:43:01 -070027 api(libs.kotlinStdlib)
Daniel Santiago Rivera7bc85762020-12-04 15:50:36 -080028 api("androidx.annotation:annotation:1.1.0")
29 api("androidx.navigation:navigation-runtime:2.3.2")
Aurimas Liutikas7f247902021-05-19 08:43:01 -070030 api(libs.hiltAndroid)
31 kapt(libs.hiltCompiler)
Daniel Santiago Rivera7bc85762020-12-04 15:50:36 -080032}
33
34androidx {
35 name = "Android Navigation Hilt Extension"
36 publish = Publish.SNAPSHOT_AND_RELEASE
37 mavenVersion = LibraryVersions.HILT
38 mavenGroup = LibraryGroups.HILT
39 inceptionYear = "2021"
40 description = "Android Navigation Hilt Extension"
41}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070042
43android {
44 namespace "androidx.hilt.navigation"
45}