Skip to content

바텀 시트 펼쳐진 채로 화면 이동 후 다시 돌아왔을 때 바텀시트 상태 유지하도록 수정 #194

바텀 시트 펼쳐진 채로 화면 이동 후 다시 돌아왔을 때 바텀시트 상태 유지하도록 수정

바텀 시트 펼쳐진 채로 화면 이동 후 다시 돌아왔을 때 바텀시트 상태 유지하도록 수정 #194

Workflow file for this run

name: CI for Test
on:
workflow_dispatch:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out Repository
uses: actions/[email protected]
- name: Create Google Services JSON File
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: |
echo "$GOOGLE_SERVICES_JSON" > google-services.json.b64
base64 -d -i google-services.json.b64 > ./app/google-services.json
- name: Create local.properties file
run: touch local.properties
- name: Add Base URL to local.properties file
run: |
echo "TUK_BASE_URL=KEY" >> local.properties
echo "GOOGLE_CLIENT_ID=KEY" >> local.properties
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew test