blob: cf35721a0cbe0db174d4a2f671cdc65fd4933efc [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 androidx.build.RunApiTasks
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import static androidx.build.dependencies.DependenciesKt.*
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("kotlin-android")
id("kotlin-kapt")
id("AndroidXUiPlugin")
id("dagger.hilt.android.plugin")
}
android {
defaultConfig {
testInstrumentationRunner "androidx.hilt.navigation.compose.TestRunner"
}
}
dependencies {
kotlinPlugin projectOrArtifact(":compose:compiler:compiler")
implementation(KOTLIN_STDLIB)
api(project(":hilt:hilt-navigation"))
api("androidx.compose.runtime:runtime:1.0.0-beta01")
api("androidx.compose.ui:ui:1.0.0-beta01")
api("androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha02")
api("androidx.navigation:navigation-compose:1.0.0-alpha08")
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 projectOrArtifact(":compose:material:material")
androidTestImplementation projectOrArtifact(":compose:test-utils")
}
androidx {
name = "Navigation Compose Hilt Extension"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenVersion = LibraryVersions.HILT_NAVIGATION_COMPOSE
mavenGroup = LibraryGroups.HILT
inceptionYear = "2021"
description = "Navigation Compose Hilt Extension"
runApiTasks = new RunApiTasks.Yes()
legacyDisableKotlinStrictApiMode = true
}
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
useIR = true
}
}