Skip to content

Commit

Permalink
flutter upgrade -> 3.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HemantKArya committed Aug 17, 2024
1 parent a151342 commit 3f1c321
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checkout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.4'
flutter-version: '3.24.0'
channel: 'stable'

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.3'
flutter-version: '3.24.0'
channel: stable
- run: |
sudo apt-get update -y
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.4'
flutter-version: '3.24.0'
channel: 'stable'

- name: Install Dependencies
Expand Down
15 changes: 13 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,20 @@ allprojects {

rootProject.buildDir = '../build'
subprojects {

// ============
// added for isarDB issue (verifyResource issue when building)
afterEvaluate { project ->
if (project.plugins.hasPlugin("com.android.application") ||
project.plugins.hasPlugin("com.android.library")) {
project.android {
compileSdkVersion 34
buildToolsVersion "34.0.0"
}
}
}
// ============
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}

Expand Down

0 comments on commit 3f1c321

Please sign in to comment.