blob: 5a67234dd59be1874c65f34ff60e1696ec4842cd [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",
23 "androidx.camera_camera-mlkit-vision",
24 "androidx.camera_camera-video",
25 "androidx.camera_camera-view",
26 "androidx-constraintlayout_constraintlayout",
27 "androidx.core_core",
28 "androidx.preference_preference",
29 "com.google.android.material_material",
30 ],
31 optional_uses_libs: [
32 "androidx.camera.extensions.impl"
33 ],
34
35 optimize: {
36 proguard_flags_files: ["proguard-rules.pro"],
37 },
38}