forked from phhusson/ims
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAndroid.bp
More file actions
38 lines (30 loc) · 889 Bytes
/
Copy pathAndroid.bp
File metadata and controls
38 lines (30 loc) · 889 Bytes
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
// SPDX-License-Identifier: GPL-2.0
// IMS service providing VoLTE via a SIP/IMS stack
android_app {
name: "PhhIms",
srcs: [
"app/src/main/java/**/*.kt",
"app/src/main/java/**/*.java",
],
resource_dirs: ["app/src/main/res"],
manifest: "app/src/main/AndroidManifest.xml",
certificate: "platform",
privileged: true,
platform_apis: true,
static_libs: [
"kotlin-stdlib",
"kotlinx_coroutines",
"kotlinx_coroutines_android",
],
jni_libs: ["librnnoise_jni"],
use_embedded_native_libs: true,
required: ["PhhImsOverlay"],
}
// Static RRO: registers me.phh.ims as the IMS MmTel service with the Phone app
runtime_resource_overlay {
name: "PhhImsOverlay",
resource_dirs: ["overlay/res"],
manifest: "overlay/AndroidManifest.xml",
certificate: "platform",
product_specific: true,
}