[go: nahoru, domu]

blob: 9259547ef27ffc842a074c41e470a2cfb9141b3a [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
Louis Pullen-Freilich5c6b11e2020-02-06 18:19:09 +000020import androidx.ui.material.icons.generator.tasks.IconGenerationTask
Louis Pullen-Freilich8f94cb42020-01-27 18:50:13 +000021
22import static androidx.build.dependencies.DependenciesKt.*
23
24plugins {
25 id("AndroidXPlugin")
26 id("com.android.library")
27 id("AndroidXUiPlugin")
28 id("org.jetbrains.kotlin.android")
29}
30
31dependencies {
32 implementation(KOTLIN_STDLIB)
33
34 api project(":ui:ui-core")
Louis Pullen-Freilich8f94cb42020-01-27 18:50:13 +000035}
36
Louis Pullen-Freilich5c6b11e2020-02-06 18:19:09 +000037IconGenerationTask.registerCoreIconProject(project, android)
38
Louis Pullen-Freilich8f94cb42020-01-27 18:50:13 +000039androidx {
40 name = "AndroidX Core Material Icons"
41 publish = Publish.SNAPSHOT_AND_RELEASE
42 mavenVersion = LibraryVersions.UI
Louis Pullen-Freilich5d182632020-07-01 14:30:26 +010043 mavenGroup = LibraryGroups.Compose.MATERIAL
Louis Pullen-Freilich8f94cb42020-01-27 18:50:13 +000044 inceptionYear = "2020"
45 description = "AndroidX Core Material Icons"
46}