From 9f684c77313f108e7ebeeb9d3cf6b89a36cc577e Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:58:42 +0200 Subject: [PATCH] Update Android_Build.yml --- .github/workflows/Android_Build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Android_Build.yml b/.github/workflows/Android_Build.yml index b6d5ec75..5e88cb8f 100644 --- a/.github/workflows/Android_Build.yml +++ b/.github/workflows/Android_Build.yml @@ -98,7 +98,7 @@ jobs: # Build the project with CMake cmake --build ${{github.workspace}}/build --config ${{ env.BUILD_TYPE }} # Move the generated library to the appropriate location - ${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/llvm-strip --strip-unneeded ./build/libAlber.so + ${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