| /* |
| * Copyright 2019 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| |
| import androidx.build.Publish |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("kotlin-android") |
| } |
| |
| dependencies { |
| api("androidx.lifecycle:lifecycle-common:2.0.0") |
| api("androidx.annotation:annotation:1.2.0") |
| api(project(":camera:camera-core")) |
| implementation(project(":camera:camera-lifecycle")) |
| implementation("androidx.annotation:annotation-experimental:1.1.0-rc01") |
| implementation(libs.guavaListenableFuture) |
| implementation("androidx.core:core:1.3.2") |
| implementation("androidx.concurrent:concurrent-futures:1.0.0") |
| implementation(libs.autoValueAnnotations) |
| implementation("androidx.appcompat:appcompat:1.1.0") |
| // Added for annotation-experimental |
| compileOnly(libs.kotlinStdlib) |
| |
| annotationProcessor(libs.autoValue) |
| |
| testImplementation(libs.testRunner) |
| testImplementation(libs.mockitoCore) |
| testImplementation(libs.robolectric) |
| testImplementation(libs.kotlinStdlib) |
| testImplementation(libs.truth) |
| testImplementation(libs.testRules) |
| testImplementation(libs.testCore) |
| testImplementation(project(":camera:camera-camera2")) |
| testImplementation(project(":camera:camera-testing")) |
| |
| androidTestImplementation(libs.multidex) |
| androidTestImplementation(libs.mockitoCore) |
| androidTestImplementation(libs.espressoCore) |
| androidTestImplementation(libs.testExtJunit) |
| androidTestImplementation(libs.testCore) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.testRules) |
| androidTestImplementation(libs.testUiautomator) |
| androidTestImplementation(libs.kotlinStdlib) |
| androidTestImplementation(libs.truth) |
| androidTestImplementation(project(":camera:camera-camera2")) |
| androidTestImplementation(project(":camera:camera-testing")) |
| androidTestImplementation(libs.mockitoCore, excludes.bytebuddy) // DexMaker has it's own MockMaker |
| androidTestImplementation(libs.dexmakerMockito, excludes.bytebuddy) // DexMaker has it's own MockMaker |
| } |
| android { |
| defaultConfig { |
| multiDexEnabled = true |
| } |
| |
| lintOptions { |
| enable 'CameraXQuirksClassDetector' |
| } |
| |
| testOptions.unitTests.includeAndroidResources = true |
| namespace "androidx.camera.view" |
| } |
| androidx { |
| name = "Jetpack Camera View Library" |
| publish = Publish.SNAPSHOT_AND_RELEASE |
| |
| mavenGroup = LibraryGroups.CAMERA |
| inceptionYear = "2019" |
| description = "UI tools for the Jetpack Camera Library, a library providing a consistent and " + |
| "reliable camera foundation that enables great camera driven experiences across all " + |
| "of Android." |
| } |