1
0
mirror of https://github.com/ouchadam/small-talk.git synced 2025-01-13 18:45:10 +01:00

Merge pull request from ouchadam/dependabot/gradle/com.google.accompanist-accompanist-systemuicontroller-0.24.4-alpha

Bump accompanist-systemuicontroller from 0.24.3-alpha to 0.24.4-alpha
This commit is contained in:
Adam Brown 2022-03-15 22:07:29 +00:00 committed by GitHub
commit 2a7d0aefb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions
.github/workflows
design-library

View File

@ -1,11 +1,11 @@
name: Assemble
name: Check Size
on:
pull_request:
jobs:
assemble-debug:
name: Assemble debug variant
check-size:
name: Check Size
runs-on: ubuntu-latest
concurrency:
@ -28,6 +28,15 @@ jobs:
distribution: 'adopt'
java-version: '11'
- name: Fetch bundletool
run: |
curl -s -L https://github.com/google/bundletool/releases/download/1.9.0/bundletool-all-1.9.0.jar --create-dirs -o bin/bundletool.jar
chmod +x bin/bundletool.jar
echo "#!/bin/bash" >> bin/bundletool
echo 'java -jar $(dirname "$0")/bundletool.jar "$@"' >> bin/bundletool
chmod +x bin/bundletool
echo "$(pwd)/bin" >> $GITHUB_PATH
- name: Check release size
run: |
echo "::set-output name=APK_SIZE::$(./tools/check-size.sh | tail -1 | cut -d ',' -f2-)"

View File

@ -3,5 +3,5 @@ applyAndroidLibraryModule(project)
dependencies {
implementation project(":core")
implementation("io.coil-kt:coil-compose:1.4.0")
implementation "com.google.accompanist:accompanist-systemuicontroller:0.24.3-alpha"
implementation "com.google.accompanist:accompanist-systemuicontroller:0.24.4-alpha"
}