From 1ad3cbfc04d8aabf75bd9036082902b833328914 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:51:34 +0300 Subject: [PATCH] Don't manually strip Android shared library --- .github/workflows/Android_Build.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/Android_Build.yml b/.github/workflows/Android_Build.yml index 4ca1d2db..a6f0ae2e 100644 --- a/.github/workflows/Android_Build.yml +++ b/.github/workflows/Android_Build.yml @@ -60,8 +60,6 @@ jobs: # Build the project with CMake cmake --build ${{github.workspace}}/build --config ${{ env.CMAKE_BUILD_TYPE }} - # 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 @@ -125,8 +123,6 @@ jobs: # Build the project with CMake cmake --build ${{github.workspace}}/build --config ${{ env.CMAKE_BUILD_TYPE }} - # 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