android_device_tecno_LG8n/shims/Android.bp
Woomymy cb60895bb0 LG8n: Add a shim to link sensor blobs against `android.hardware.sens…
…ors@1.0-convert`

* `libndksensorbridge` was converted to AIDL and is no longer linked to
  this static library that contains symbols required by our sensor
  blobs. Add a shim linked to `android.hardware.sensors@1.0-convert` to
  fix our sensors

Change-Id: I969f97bb15d0abcc71f87352722995db3826e122
Signed-off-by: Woomymy <woomy@woomy.be>
Signed-off-by: Shirayuki39 <lorddemecrius83@proton.me>
2024-07-26 00:31:19 +08:00

13 lines
258 B
Plaintext

cc_library_shared {
name: "libshim_sensors",
whole_static_libs: [
"android.hardware.sensors@1.0-convert"
],
shared_libs: [
"libhardware",
"libhidlbase",
"android.hardware.sensors@1.0"
],
vendor: true
}