[go: nahoru, domu]

blob: 39c8b0aa1e146e83b6f0960b5fe27bf3775606b3 [file] [log] [blame]
Louis Pullen-Freilich8f94cb42020-01-27 18:50:13 +00001/*
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
17import androidx.build.LibraryGroups
18import androidx.build.LibraryVersions
19import androidx.build.Publish
20
21import static androidx.build.dependencies.DependenciesKt.*
22
23plugins {
24 id("AndroidXPlugin")
25 id("com.android.library")
26 id("AndroidXUiPlugin")
27 id("org.jetbrains.kotlin.android")
28}
29
30dependencies {
31 implementation(KOTLIN_STDLIB)
32
33 api project(":ui:ui-core")
34 api project(":ui:ui-framework")
35}
36
37androidx {
38 name = "AndroidX Core Material Icons"
39 publish = Publish.SNAPSHOT_AND_RELEASE
40 mavenVersion = LibraryVersions.UI
41 mavenGroup = LibraryGroups.UI
42 inceptionYear = "2020"
43 description = "AndroidX Core Material Icons"
44}