Skip to content

Commit 2cf78df

Browse files
committed
Use API 25 since API 26 does not contain any arm64-v8a system images
1 parent a940307 commit 2cf78df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci/android-install-ndk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
set -ex
1313

1414
NDK=android-ndk-r19c
15-
API=26
15+
API=25
1616
curl --retry 10 -O https://dl.google.com/android/repository/${NDK}-linux-x86_64.zip
1717
unzip -q ${NDK}-linux-x86_64.zip
1818

ci/android-install-sdk.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -ex
1919
# which apparently magically accepts the licenses.
2020

2121
SDK=4333796
22-
API=26
22+
API=25
2323
mkdir sdk
2424
curl --retry 10 https://dl.google.com/android/repository/sdk-tools-linux-${SDK}.zip -O
2525
unzip -d sdk sdk-tools-linux-${SDK}.zip
@@ -63,9 +63,9 @@ yes | ./sdk/tools/bin/sdkmanager --no_https \
6363
"emulator" \
6464
"platform-tools" \
6565
"platforms;android-${API}" \
66-
"system-images;android-${API};default;$abi"
66+
"system-images;android-${API};$abi"
6767

6868
echo "no" |
6969
./sdk/tools/bin/avdmanager create avd \
7070
--name "${1}" \
71-
--package "system-images;android-${API};default;$abi"
71+
--package "system-images;android-${API};$abi"

0 commit comments

Comments
 (0)