diff --git a/native/android/app/bash/detect_abis.sh b/native/android/app/bash/detect_abis.sh --- a/native/android/app/bash/detect_abis.sh +++ b/native/android/app/bash/detect_abis.sh @@ -7,7 +7,7 @@ for ID in ${IDS} do - ABI="$(adb -s $ID shell getprop ro.product.cpu.abi)" + ABI=$(adb -s "$ID" shell getprop ro.product.cpu.abi) # check if we already have this ABI if [[ " ${ABIS[*]} " =~ " ${ABI} " ]]; then continue @@ -15,4 +15,4 @@ ABIS+="${ABI} " done -echo $ABIS +echo "$ABIS"