blob: 647567cda3fc742760d84f41465ab720c59e3980 [file] [log] [blame]
Xi Zhang69103be2022-10-10 13:17:10 -07001/*
2 * Copyright 2022 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 */
16import androidx.build.Publish
17import androidx.build.RunApiTasks
18
19plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
22 id("kotlin-android")
23}
24dependencies {
25 api(project(":camera:camera-core"))
26}
27android {
28 defaultConfig {
29 multiDexEnabled = true
30 }
31 testOptions.unitTests.includeAndroidResources = true
32 namespace "androidx.camera.effects.stillportrait"
33}
34androidx {
Alan Viverettea46238ed2023-05-08 17:36:59 -040035 name = "Camera Effects: Still Portrait"
Xi Zhang69103be2022-10-10 13:17:10 -070036 publish = Publish.SNAPSHOT_ONLY
Xi Zhang69103be2022-10-10 13:17:10 -070037 inceptionYear = "2022"
38 runApiTasks = new RunApiTasks.Yes()
39 description = "A post-processing effect that works with CameraX Library, providing a portrait" +
40 " mode effect that applies to still image captures."
41}