Skip to content

Update Android SDK installation and APK build process #9

Update Android SDK installation and APK build process

Update Android SDK installation and APK build process #9

Workflow file for this run

name: React Native Frontend CI
on:
push:
branches:
- MaryJabro # Adjust the branch if needed
pull_request:
branches:
- MaryJabro # Adjust the branch if needed
jobs:
build:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Step 2: Set up Node.js version 18
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
# Step 3: Install Node.js dependencies
- name: Install Node.js dependencies
run: npm install
working-directory: VitalTrackApp
# Step 4: Run Unit Tests using Jest
- name: Run Unit Tests
run: npm run test
working-directory: VitalTrackApp
# Step 5: Set up JDK 17 for Android
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
# Step 6: Install Android SDK Command-line Tools
- name: Install Android SDK
run: |
sudo apt-get update
sudo apt-get install -y wget unzip
wget https://dl.google.com/android/repository/commandlinetools-linux-8092744_latest.zip
mkdir -p $HOME/Android/cmdline-tools
unzip commandlinetools-linux-8092744_latest.zip -d $HOME/Android/cmdline-tools
export ANDROID_HOME=$HOME/Android
export PATH=$ANDROID_HOME/cmdline-tools/cmdline-tools/bin:$PATH
sdkmanager --sdk_root=$ANDROID_HOME --licenses
sdkmanager --sdk_root=$ANDROID_HOME "platform-tools" "platforms;android-34" "build-tools;34.0.0"
# Step 7: Build Android APK
- name: Build Android APK
run: ./gradlew assembleDebug
working-directory: VitalTrackApp/android