Merge pull request #4595 from talregev/TalR/bugfix_flutter_ububntu

This commit is contained in:
Vitalii Koshura 2021-12-18 13:01:05 +01:00 committed by GitHub
commit 6f8fba3534
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -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'

View File

@ -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

View File

@ -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