aboutsummaryrefslogtreecommitdiff
path: root/configs/public.libraries.txt (follow)
Commit message (Collapse)AuthorAge
* msm8996-common: Add protobuf vendorcompat libix52023-08-12
| | | | | | | | | | | | | | | | | | Our blobs are compiled against libprotobuf-full-cpp.so, but starting in R, Android is using a versioned naming approach, e.g. libprotobuf-cpp-full-3.9.1.so. See https://r.android.com/1109518 The entry in public.libraries.txt is needed to allow the linker to find and use the lib outside the VNDK. See https://source.android.com/devices/tech/config/namespaces_libraries [wight554: added libprotobuf-cpp-lite as well] Signed-off-by: Volodymyr Zhdanov <wight554@gmail.com> Change-Id: I28222c89e1e07017867088492a726ee9d45d8e6f
* msm8996-common: List additional native libraries to expose to appsBruno Martins2018-05-02
* Example bellow of a failure before one lib was made accessible to a camera app. Before exposing: I CAM_HexagonEnv: Will attempt to load libadsprpc.so from the system partition I CAM_HexagonEnv: Loading libhalide_hexagon_host.so from the app I CAM_CamBoxHelper: Computing layout for window: 1080x1920, and preview: 3000x4000, orientation: PORTRAIT, isMultiWindow: false I CAM_CamBoxHelper: placing extra widgets above the bottom bar I CAM_CamBoxHelper: Computed layout: CameraLayoutBoxes{window=1080x1920, preview=Rect(0, 106 - 1080, 1546), uncoveredPreview=Rect(0, 173 - 1080, 1546), topBar=Rect(0, 0 - 1080, 106), optionsBar=Rect(0, 0 - 1080, 173), bottomBar=Rect(0, 1546 - 1080, 1920), extraBottomWidgets=Rect(0, 1488 - 1080, 1546)} W CAM_HexagonEnv: Failed to load Hexagon library: java.lang.UnsatisfiedLinkError: dlopen failed: library "libadsprpc.so" not found After exposing: I CAM_HexagonEnv: Will attempt to load libadsprpc.so from the system partition I CAM_HexagonEnv: Loading libhalide_hexagon_host.so from the app I CAM_CamBoxHelper: Computed layout: CameraLayoutBoxes{window=1078x1860, preview=Rect(0, 0 - 1078, 808), uncoveredPreview=Rect(0, 173 - 1078, 1437), topBar=Rect(0, 0 - 1078, 106), optionsBar=Rect(0, 0 - 1078, 173), bottomBar=Rect(0, 1437 - 1078, 1860), extraBottomWidgets=Rect(0, 1437 - 1078, 1495)} I CAM_HexagonEnv: Writing libhalide_hexagon_remote_skel.so to /data/user/0/<package_name_removed>/libhalide_hexagon_remote_skel.so I CAM_HexagonEnv: ADSP_LIBRARY_PATH=/data/user/0/<package_name_removed>;/dsp Change-Id: I552dc44a32221d2d3cec48e1c64ed72c470d412e