mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
chore: update dep
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user