From 7b580ac80e9161ab8676762474b1551b3cc85f38 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:33:15 +0000 Subject: [PATCH] Test stripping Android shared library (#413) * Test stripping Android shared library * Update Android_Build.yml * Update Android_Build.yml * Update Android_Build.yml * Update Android_Build.yml * Update Android_Build.yml * Update Android_Build.yml * Update Android_Build.yml * Update Android_Build.yml * Update Android_Build.yml * aaaaaaaaaaaaaaaaa --- .github/workflows/Android_Build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Android_Build.yml b/.github/workflows/Android_Build.yml index 137577c1..2d0fd844 100644 --- a/.github/workflows/Android_Build.yml +++ b/.github/workflows/Android_Build.yml @@ -45,8 +45,11 @@ jobs: git apply ./.github/gles.patch # Build the project with CMake cmake --build ${{github.workspace}}/build --config ${{ env.BUILD_TYPE }} - # Move the generated library to the appropriate location + + # Strip the generated library and move it to the appropriate location + ${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --strip-unneeded ./build/libAlber.so mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/x86_64/ + # Build the Android app with Gradle cd src/pandroid ./gradlew assemble${{ env.BUILD_TYPE }} @@ -97,8 +100,11 @@ jobs: git apply ./.github/gles.patch # Build the project with CMake cmake --build ${{github.workspace}}/build --config ${{ env.BUILD_TYPE }} - # Move the generated library to the appropriate location + + # Strip the generated library and move it to the appropriate location + ${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --strip-unneeded ./build/libAlber.so mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/arm64-v8a/ + # Build the Android app with Gradle cd src/pandroid ./gradlew assemble${{ env.BUILD_TYPE }}