Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gua12345 authored Sep 24, 2024
1 parent 8bdebf2 commit b7a2dc0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ jobs:
run: |
mkdir -p $HOME/.buildozer/android/platform
cd $HOME/.buildozer/android/platform
wget https://dl.google.com/android/repository/commandlinetools-linux-7583922_latest.zip
unzip commandlinetools-linux-7583922_latest.zip -d cmdline-tools
yes | sdkmanager --sdk_root=$HOME/.buildozer/android/platform "platform-tools" "platforms;android-30" "build-tools;30.0.3"
wget https://dl.google.com/android/repository/commandlinetools-linux-7583922_latest.zip -O commandlinetools.zip
unzip commandlinetools.zip -d cmdline-tools
export ANDROID_HOME=$HOME/.buildozer/android/platform
export PATH=$ANDROID_HOME/cmdline-tools/bin:$PATH
yes | sdkmanager --sdk_root=$ANDROID_HOME "platform-tools" "platforms;android-30" "build-tools;30.0.3"
- name: Build APK
run: |
Expand Down

0 comments on commit b7a2dc0

Please sign in to comment.