-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathAndroid.bp
More file actions
36 lines (27 loc) · 740 Bytes
/
Android.bp
File metadata and controls
36 lines (27 loc) · 740 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
//
// SPDX-FileCopyrightText: 2020 The LineageOS Project
// SPDX-License-Identifier: Apache-2.0
//
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
android_app {
name: "ExactCalculator",
resource_dirs: ["res"],
sdk_version: "35",
overrides: ["Calculator"],
srcs: ["src/**/*.java"],
optimize: {
proguard_flags_files: ["proguard.flags"],
},
product_specific: true,
static_libs: [
// DO NOT EDIT THIS SECTION MANUALLY
"androidx.graphics_graphics-shapes",
"androidx.gridlayout_gridlayout",
"androidx.webkit_webkit",
"com.google.android.material_material",
"ExactCalculator_com.hp_crcalc",
"kotlin-stdlib",
],
}