Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Android - Add sdk_android_cppsdk.so to PublicAdditionalLibraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Audykowicz committed Sep 8, 2023
1 parent 8b56abf commit b3a1c7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions DolbyIO/Source/DolbyIO.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public DolbyIO(ReadOnlyTargetRules Target) : base(Target)
{
LibDir = Path.Combine(SdkDir, "libs", "android.arm64-v8a");
string[] Libs = new string[] { Path.Combine(LibDir, "libdolbyio_comms_media.so"),
Path.Combine(LibDir, "libdolbyio_comms_sdk_android_cppsdk.so"), // not needed?
Path.Combine(LibDir, "libdolbyio_comms_sdk.so") };
PublicAdditionalLibraries.AddRange(Libs);

Expand Down
2 changes: 1 addition & 1 deletion scripts/android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for ARCH in arm64-v8a
do
LIBS_PATH=${RELEASE_PATH}/libs/android.${ARCH}
mkdir -p ${LIBS_PATH}
for LIB in media sdk
for LIB in media sdk sdk_android_cppsdk # last one not needed?
do
cp ${AAR_TMP}/jni/${ARCH}/libdolbyio_comms_${LIB}.so ${LIBS_PATH}
done
Expand Down

0 comments on commit b3a1c7c

Please sign in to comment.