* This lib is creating troubles on android 10 requiring old libs in vendor * Other than that, it's the only culprit for vndk runtime being kept disabled * Nuke this lib via a empty shim providing the symbols to the camera hal
17 lines
300 B
Text
17 lines
300 B
Text
/* libMiWatermark */
|
|
cc_library_shared {
|
|
name: "libMiWatermark_shim",
|
|
proprietary: true,
|
|
defaults: ["hidl_defaults"],
|
|
srcs: [
|
|
"miwatermark.cpp",
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-Wall",
|
|
],
|
|
shared_libs: [
|
|
"libutils",
|
|
],
|
|
}
|