Skip to content

Commit

Permalink
Use a newer android sdk for arm (v24 -> v28)
Browse files Browse the repository at this point in the history
  • Loading branch information
fkm3 committed Apr 19, 2022
1 parent 50bdc64 commit f2901a5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ci/android-install-sdk.sh
Expand Up @@ -16,11 +16,12 @@ unzip -q -d sdk/cmdline-tools commandlinetools-linux-${SDK}_latest.zip

case "$1" in
arm | armv7)
api=24
image="system-images;android-${api};default;armeabi-v7a"
api=28
# Using the arm64 image because there is no armeabi-v7a image for api>24.
image="system-images;android-${api};google_apis;arm64-v8a"
;;
aarch64)
api=24
api=28
image="system-images;android-${api};google_apis;arm64-v8a"
;;
i686)
Expand Down

0 comments on commit f2901a5

Please sign in to comment.