Skip to content

Commit

Permalink
chore: bump package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matisiekpl committed Oct 14, 2024
1 parent 733ad30 commit 5342f3e
Show file tree
Hide file tree
Showing 11 changed files with 308 additions and 643 deletions.
25 changes: 22 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,29 @@ allprojects {

rootProject.buildDir = '../build'
subprojects {
afterEvaluate { project ->
if (project.extensions.findByName("android") != null) {
Integer pluginCompileSdk = project.android.compileSdk
if (pluginCompileSdk != null && pluginCompileSdk < 31) {
project.logger.error(
"Warning: Overriding compileSdk version in Flutter plugin: "
+ project.name
+ " from "
+ pluginCompileSdk
+ " to 34 (to work around https://issuetracker.google.com/issues/199180389)."
+ "\nIf there is not a new version of " + project.name + ", consider filing an issue against "
+ project.name
+ " to increase their compileSdk to the latest (otherwise try updating to the latest version)."
)
project.android {
compileSdk 34
}
}
}
}

project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
project.evaluationDependsOn(":app")
}

tasks.register("clean", Delete) {
Expand Down
5 changes: 1 addition & 4 deletions ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '12.0'

platform :ios, '12.0'
platform :ios, '13.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

Expand Down
349 changes: 0 additions & 349 deletions ios/Podfile.lock

This file was deleted.

Loading

0 comments on commit 5342f3e

Please sign in to comment.