Skip to content

Commit

Permalink
Merge pull request #4595 from talregev/TalR/bugfix_flutter_ububntu
Browse files Browse the repository at this point in the history
  • Loading branch information
AenBleidd committed Dec 18, 2021
2 parents e029a73 + 406339e commit 6f8fba3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flutter-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '12.2'
xcode-version: '12.5.1'

- name: Setup flutter
uses: subosito/flutter-action@v1
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/flutter-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:

- name: Install linux dependencies
if: matrix.type == 'linux'
run: sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev
run: |
sudo apt update
sudo apt install -y clang cmake ninja-build pkg-config libgtk-3-dev
- name: Build linux client
if: matrix.type == 'linux'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '12.2'
xcode-version: '12.5.1'

- uses: actions/checkout@v2

- name: Cache dependencies
Expand Down
2 changes: 1 addition & 1 deletion samples/flutter/boinc/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 30
compileSdkVersion 31

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 6f8fba3

Please sign in to comment.