blob: 20a91984346d15ec52b4e4a27ee3fd89321e2d88 [file] [log] [blame]
/*
* Copyright 2021 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.LibraryGroups
import androidx.build.LibraryVersions
import androidx.build.Publish
import static androidx.build.dependencies.DependenciesKt.*
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("kotlin-android")
id("kotlin-kapt")
id("dagger.hilt.android.plugin")
}
android {
defaultConfig {
testInstrumentationRunner "androidx.hilt.navigation.fragment.TestRunner"
}
}
dependencies {
api(KOTLIN_STDLIB)
api(project(":hilt:hilt-navigation"))
api("androidx.navigation:navigation-fragment-ktx:2.3.2")
androidTestImplementation("androidx.fragment:fragment-testing:1.3.0")
androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
androidTestImplementation(ANDROIDX_TEST_CORE)
androidTestImplementation(ANDROIDX_TEST_RUNNER)
androidTestImplementation(ANDROIDX_TEST_RULES)
androidTestImplementation(TRUTH)
androidTestImplementation(HILT_ANDROID)
androidTestImplementation(HILT_ANDROID_TESTING)
kaptAndroidTest(HILT_COMPILER)
androidTestImplementation(project(":internal-testutils-runtime"))
androidTestImplementation(project(":internal-testutils-navigation"), {
exclude group: 'androidx.navigation', module: 'navigation-common-ktx'
})
}
androidx {
name = "Android Navigation Fragment Hilt Extension"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenVersion = LibraryVersions.HILT
mavenGroup = LibraryGroups.HILT
inceptionYear = "2021"
description = "Android Navigation Fragment Hilt Extension"
}