chore: update dep

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-26 18:46:45 +08:00
parent f3e6a59e4f
commit cdfab7a7db
2 changed files with 28 additions and 14 deletions

View File

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

View File

@@ -1204,7 +1204,7 @@ packages:
description: description:
path: media_kit_video path: media_kit_video
ref: "version_1.3.0" ref: "version_1.3.0"
resolved-ref: "8712919335f1407010fdcce620027a22d82d5559" resolved-ref: "979051686b6a31a6aa8f7f9aa2202a86cabddeca"
url: "https://github.com/bggRGjQaUbCoE/media-kit.git" url: "https://github.com/bggRGjQaUbCoE/media-kit.git"
source: git source: git
version: "1.3.0" version: "1.3.0"