blob: a2552720c06730bd4c76786b1b428e2fc0e99d89 [file] [log] [blame]
Alan Viverette4ca239d2019-06-12 13:01:59 -04001/*
2 * Copyright 2019 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
Tiem Songee0da742024-01-03 14:08:46 -080017/**
18 * This file was created using the `create_project.py` script located in the
19 * `<AndroidX root>/development/project-creator` directory.
20 *
21 * Please use that script when creating a new project, rather than copying an existing project and
22 * modifying its settings.
23 */
Alan Viverettedca50c72023-07-07 10:33:12 -040024import androidx.build.KotlinTarget
Omar Ismail86e66062024-05-03 16:10:50 +010025import androidx.build.LibraryType
Alan Viverette4ca239d2019-06-12 13:01:59 -040026
27plugins {
28 id("AndroidXPlugin")
29 id("com.android.library")
Alan Viverette07ff9472019-12-09 17:17:14 -050030 id("org.jetbrains.kotlin.android")
Alan Viverette4ca239d2019-06-12 13:01:59 -040031}
32
33dependencies {
Aurimas Liutikas06109482022-03-14 17:06:34 -070034 api(libs.kotlinStdlib)
Alan Viverette4ca239d2019-06-12 13:01:59 -040035 lintPublish(project(":annotation:annotation-experimental-lint"))
36}
37
38androidx {
39 name = "Experimental annotation"
Omar Ismail86e66062024-05-03 16:10:50 +010040 type = LibraryType.PUBLISHED_LIBRARY
Alan Viverette62baf412019-07-12 14:15:51 -040041 mavenVersion = LibraryVersions.ANNOTATION_EXPERIMENTAL
Alan Viverette4ca239d2019-06-12 13:01:59 -040042 inceptionYear = "2019"
Alan Viverette62baf412019-07-12 14:15:51 -040043 description = "Java annotation for use on unstable Android API surfaces. When used in " +
44 "conjunction with the Experimental annotation lint checks, this annotation provides " +
45 "functional parity with Kotlin's Experimental annotation."
Alan Viverette4ca239d2019-06-12 13:01:59 -040046}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070047
48android {
Aurimas Liutikas77952822024-12-04 18:00:17 -080049 namespace = "androidx.annotation.experimental"
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070050}