blob: cd3e4d0d5efa0caeeed662e51ddfaacd6ee206a9 [file] [log] [blame]
Sebastiano Barezzi2812dfb2022-08-08 14:01:04 +02001//
2// Copyright (C) 2022 The LineageOS Project
3//
4// SPDX-License-Identifier: Apache-2.0
5//
6
7android_app {
8 name: "Aperture",
9
10 srcs: ["src/main/java/**/*.kt"],
11 resource_dirs: ["src/main/res"],
12 manifest: "src/main/AndroidManifest.xml",
13
14 product_specific: true,
15 platform_apis: true,
16
17 static_libs: [
18 "androidx.appcompat_appcompat",
19 "androidx.camera_camera-camera2",
20 "androidx.camera_camera-core",
21 "androidx.camera_camera-extensions",
22 "androidx.camera_camera-lifecycle",
Sebastiano Barezzi2812dfb2022-08-08 14:01:04 +020023 "androidx.camera_camera-video",
24 "androidx.camera_camera-view",
25 "androidx-constraintlayout_constraintlayout",
26 "androidx.core_core",
27 "androidx.preference_preference",
28 "com.google.android.material_material",
29 ],
30 optional_uses_libs: [
31 "androidx.camera.extensions.impl"
32 ],
33
34 optimize: {
35 proguard_flags_files: ["proguard-rules.pro"],
36 },
37}