blob: 155b67becbad3d714b373a22d7d06adf77fbb024 [file] [log] [blame]
charcoalchena8cf1c62019-03-15 16:41:07 +08001/*
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 */
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070024import androidx.build.Publish
charcoalchena8cf1c62019-03-15 16:41:07 +080025
26plugins {
Wenhung Teng73b1dbd2019-04-08 09:11:18 -070027 id("AndroidXPlugin")
28 id("com.android.library")
charcoalchena8cf1c62019-03-15 16:41:07 +080029}
30
31dependencies {
Nick Anthonyac4cf062019-06-04 10:59:29 -040032 api("androidx.annotation:annotation:1.1.0")
Scott Nien1b148222023-08-31 17:31:40 +080033 implementation(project(":camera:camera-core"))
charcoalchena8cf1c62019-03-15 16:41:07 +080034}
35
36android {
37 defaultConfig {
Franklin Wu30c76f62019-04-15 16:03:23 -070038 multiDexEnabled true
charcoalchena8cf1c62019-03-15 16:41:07 +080039 }
System Administratorc4ab0a12022-04-13 12:05:20 -070040
41 lintOptions {
42 enable 'CameraXQuirksClassDetector'
43 }
44
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070045 namespace "androidx.camera.extensions.impl"
Franklin Wu30c76f62019-04-15 16:03:23 -070046}
47
48androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040049 name = "Camera Extensions Example"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070050 publish = Publish.NONE
Franklin Wu30c76f62019-04-15 16:03:23 -070051 inceptionYear = "2019"
52 description = "Example extension implementation for the Jetpack Camera Library, a library providing a " +
53 "consistent and reliable camera foundation that enables great camera driven " +
54 "experiences across all of Android."
55}