4a8f41081e
Many modules requiring min_sdk_version have been used without setting it, but hard-coded in allowlist. Bug: 158059172 Test: m Change-Id: Ibb09ddfdb11df0791a28eb8a0a49f1780084fd95
22 lines
494 B
Text
22 lines
494 B
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libbuildversion",
|
|
host_supported: true,
|
|
recovery_available: true,
|
|
srcs: ["libbuildversion.cpp"],
|
|
export_include_dirs: ["include"],
|
|
cflags: ["-fvisibility=hidden"],
|
|
target: {
|
|
windows: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
min_sdk_version: "26",
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"//apex_available:anyapex",
|
|
],
|
|
}
|