Adam Powell | b15ee75 | 2017-01-20 16:47:59 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | */ |
Sergey Vasilinets | eb9d04ce | 2017-09-18 15:59:33 -0700 | [diff] [blame] | 16 | |
Sergey Vasilinets | 98971a7 | 2018-04-18 10:33:33 -0700 | [diff] [blame] | 17 | import static androidx.build.dependencies.DependenciesKt.* |
| 18 | import androidx.build.LibraryGroups |
| 19 | import androidx.build.LibraryVersions |
Aurimas Liutikas | b63ef63 | 2019-04-01 04:37:49 -0700 | [diff] [blame] | 20 | import androidx.build.AndroidXExtension |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 21 | import androidx.build.Publish |
Sergey Vasilinets | eb9d04ce | 2017-09-18 15:59:33 -0700 | [diff] [blame] | 22 | |
Aurimas Liutikas | 3ba8693 | 2017-11-07 03:46:07 +0000 | [diff] [blame] | 23 | plugins { |
Aurimas Liutikas | cdb9f9f | 2019-04-08 12:07:49 +0100 | [diff] [blame] | 24 | id("AndroidXPlugin") |
| 25 | id("com.android.library") |
Ian Lake | fc54de3 | 2018-08-22 15:47:17 -0700 | [diff] [blame] | 26 | id("kotlin-android") |
Aurimas Liutikas | 3ba8693 | 2017-11-07 03:46:07 +0000 | [diff] [blame] | 27 | } |
Adam Powell | b15ee75 | 2017-01-20 16:47:59 -0800 | [diff] [blame] | 28 | |
Adam Powell | b15ee75 | 2017-01-20 16:47:59 -0800 | [diff] [blame] | 29 | dependencies { |
Ian Lake | c4ae7e6 | 2018-04-12 14:36:09 -0700 | [diff] [blame] | 30 | api(project(":navigation:navigation-common")) |
Ian Lake | 2c6d50b | 2019-09-23 15:50:44 -0700 | [diff] [blame^] | 31 | api(project(":activity:activity")) |
Ian Lake | 6cadb34 | 2019-07-15 10:45:25 -0700 | [diff] [blame] | 32 | api(project(":lifecycle:lifecycle-viewmodel")) |
Ian Lake | 391dc4b | 2019-09-07 17:51:23 -0700 | [diff] [blame] | 33 | api("androidx.savedstate:savedstate:1.0.0") |
Ian Lake | 5371f5b | 2019-07-29 16:00:58 -0700 | [diff] [blame] | 34 | api(project(":lifecycle:lifecycle-viewmodel-savedstate")) |
Adam Powell | b15ee75 | 2017-01-20 16:47:59 -0800 | [diff] [blame] | 35 | |
Ian Lake | 7a55d72 | 2018-10-12 10:07:44 -0700 | [diff] [blame] | 36 | androidTestImplementation(project(":navigation:navigation-testing")) |
Dustin Lam | 3979d96 | 2019-04-08 10:40:19 -0700 | [diff] [blame] | 37 | androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT) |
| 38 | androidTestImplementation(ANDROIDX_TEST_CORE) |
| 39 | androidTestImplementation(ANDROIDX_TEST_RUNNER) |
| 40 | androidTestImplementation(ANDROIDX_TEST_RULES) |
Aurimas Liutikas | 544a1d7 | 2018-01-31 15:30:19 -0800 | [diff] [blame] | 41 | androidTestImplementation(ESPRESSO_CORE) |
Ian Lake | 3dce08c | 2018-11-20 14:50:11 -0800 | [diff] [blame] | 42 | androidTestImplementation(TRUTH) |
Ian Lake | fc54de3 | 2018-08-22 15:47:17 -0700 | [diff] [blame] | 43 | androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) |
| 44 | androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) |
| 45 | androidTestImplementation(KOTLIN_STDLIB) |
Adam Powell | b15ee75 | 2017-01-20 16:47:59 -0800 | [diff] [blame] | 46 | } |
| 47 | |
Aurimas Liutikas | 2ad3161 | 2019-04-01 04:23:03 -0700 | [diff] [blame] | 48 | androidx { |
Aurimas Liutikas | 3670911 | 2017-11-08 23:28:50 +0000 | [diff] [blame] | 49 | name = "Android Navigation Runtime" |
Aurimas Liutikas | 75e93a0 | 2019-05-28 16:31:38 -0700 | [diff] [blame] | 50 | publish = Publish.SNAPSHOT_AND_RELEASE |
Aurimas Liutikas | c0ba6c7 | 2017-11-09 16:49:08 -0800 | [diff] [blame] | 51 | mavenVersion = LibraryVersions.NAVIGATION |
Aurimas Liutikas | 3670911 | 2017-11-08 23:28:50 +0000 | [diff] [blame] | 52 | mavenGroup = LibraryGroups.NAVIGATION |
| 53 | inceptionYear = "2017" |
| 54 | description = "Android Navigation-Runtime" |
Aurimas Liutikas | b63ef63 | 2019-04-01 04:37:49 -0700 | [diff] [blame] | 55 | url = AndroidXExtension.ARCHITECTURE_URL |
Sergey Vasilinets | 98971a7 | 2018-04-18 10:33:33 -0700 | [diff] [blame] | 56 | } |