From 7e98d2fe92d029639cbd8eacbdae4fa17cebdf6f Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 4 Jul 2025 13:08:31 +0000 Subject: [PATCH] follow-up prev: fix typo --- contrib/android/make_barcode_scanner.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/android/make_barcode_scanner.sh b/contrib/android/make_barcode_scanner.sh index 19df7752e..544fa9a5a 100755 --- a/contrib/android/make_barcode_scanner.sh +++ b/contrib/android/make_barcode_scanner.sh @@ -39,7 +39,7 @@ TARGET_ARCH="$1" if [[ "$TARGET_ARCH" != "armeabi-v7a" \ && "$TARGET_ARCH" != "arm64-v8a" \ && "$TARGET_ARCH" != "x86_64" ]]; then - fail "build_barcode_scanner.sh invalid target architecture argument: $TARGET_ARCH" + fail "make_barcode_scanner.sh invalid target architecture argument: $TARGET_ARCH" fi info "Building BarcodeScannerView and deps for architecture: $TARGET_ARCH" @@ -68,7 +68,7 @@ else cd "$ZXING_CPP_DIR/wrappers/aar" chmod +x gradlew - # Set local.properties to use SDK of docker container + # Set local.properties to use SDK of docker container echo "sdk.dir=${ANDROID_SDK_HOME}" > local.properties # gradlew will install a specific NDK version required by zxing-cpp ./gradlew :zxingcpp:assembleRelease -Pandroid.injected.build.abi="$TARGET_ARCH"