Skip to content

Commit

Permalink
install and boot emulator
Browse files Browse the repository at this point in the history
  • Loading branch information
sirkev committed Jun 14, 2024
1 parent c4ac08e commit 8a8594c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/appium_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
distribution: 'zulu'
java-version: '17'


- name: Install Flutter
uses: subosito/flutter-action@v2
with:
Expand Down
3 changes: 2 additions & 1 deletion scripts/install-android-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ java -version
cd ~ && wget https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip
ANDROID_HOME=/opt/androidsdk
mkdir -p $ANDROID_HOME
sudo apt install unzip -y && unzip sdk-tools-linux-4333796.zip -d $ANDROID_HOME
sudo apt install unzip -y && unzip commandlinetools-linux-11076708_latest -d $ANDROID_HOME

echo "export ANDROID_HOME=$ANDROID_HOME" >> ~/.bashrc
echo 'export SDK=$ANDROID_HOME' >> ~/.bashrc
echo 'export PATH=$SDK/emulator:$SDK/tools:$SDK/tools/bin:$SDK/platform-tools:$PATH' >> ~/.bashrc
# shellcheck disable=SC1090
source ~/.bashrc

# Install Android Image version 29
Expand Down

0 comments on commit 8a8594c

Please sign in to comment.