-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroid.bp
46 lines (41 loc) · 963 Bytes
/
Android.bp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
// Copyright (C) 2023-2024 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
soong_namespace {
}
android_app_import {
name: "MiuiCamera",
apk: "prebuilt/MiuiCamera.apk",
overrides: [
"Aperture",
"Camera2",
"GoogleCamera",
"GoogleCameraGo",
],
presigned: true,
privileged: true,
system_ext_specific: true,
required: [
"privapp-permissions-miuicamera.xml",
],
}
android_app_import {
name: "MiuiExtraPhoto",
apk: "prebuilt/MiuiExtraPhoto.apk",
certificate: "media",
system_ext_specific: true,
uses_libs: ["org.apache.http.legacy"],
}
cc_library {
name: "libgui_shim_miuicamera",
srcs: ["shims/libgui_shim_miuicamera.c"],
system_ext_specific: true,
}
prebuilt_etc {
name: "privapp-permissions-miuicamera.xml",
system_ext_specific: true,
src: "permissions/privapp-permissions-miuicamera.xml",
sub_dir: "permissions",
}