我克隆了一个flutter项目,并试图在android设备上运行它。但我遇到了这个错误:
任务': app: check DebugAarMetadata'执行失败。发生多个任务操作失败:执行com.android.build.gradle.internal.tasks.CheckAarMetadataWorkAction时发生失败
该错误提到当前的compileSdkVersion为30,但某些依赖项仅适用于31。
所以,在我的应用级构建中,我刚刚将compileSdkVersion和targetSdkVersion从30更改为31。gradle,然后我试图再次运行它,但我遇到了另一个错误:
任务:位置:CompiledBugkotlin e:在依赖项中发现不兼容的类。从类路径中删除它们,或者使用“-Xskip metadata version check”来抑制错误e:C:/Users/Harshit/。gradle/caches/transforms-2/files-2.1/1028a8ca100cbb0fda6fd6257a450fc1/jetified-window-1.0.0-beta04-api。罐子/META-INF/窗口发布。kotlin_模块:模块是用不兼容的kotlin版本编译的。其元数据的二进制版本为1.5.1,预期版本为1.1.15。
在谷歌快速搜索之后,我找到了一个补丁,我需要提到android/build中的最新kotlin版本。gradle文件,所以我改变了这个:
ext.kotlin_version = '1.3.50'
为此:
ext.kotlin_version = '1.6.0'
并下载了相应的kotlin插件。然后我尝试再次运行该项目,遇到了这个错误:
任务“:google_html" target="_blank">maps_Flatter:CheckDebugUnitTestArmMetadata”的执行失败。发生多个任务操作失败:执行com时发生故障。Android建筑格雷德尔。内部的任务。CheckAarMetadataWorkAction
此错误与第一个错误相同,只是这里提到当前compileSdkVersion是29,尽管我在将其设置为31后没有更改它。
因此,出于某种原因,升级kotlin的版本会导致compileSdkVersin自动设置为29,我不知道为什么。
如何摆脱这个错误,说当前的compileSdkVersion是29,即使我把它设置为31?
为什么更改kotlin版本会欺骗它,让它相信compileSdkVersion是29,即使在构建中它的值设置为31。格拉德尔?
Android/build.gradle:
buildscript {
ext.kotlin_version = '1.6.0'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.8'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
应用程序/build.gradle:
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 31
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.pranshupandya.locus_stalker"
minSdkVersion 20
targetSdkVersion 31
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation platform('com.google.firebase:firebase-bom:28.2.0')
implementation 'com.google.firebase:firebase-analytics'
def multidex_version = "2.0.1"
implementation "androidx.multidex:multidex:$multidex_version"
}
apply plugin: 'com.google.gms.google-services'
导航到您的项目构建。格拉德尔
确保已为CompileSDK版本TargetSDK版本输入了这些值
我让他们早些时候输入相同的值,错误依然存在。所以要确保它们是一个比另一个少。简而言之,它应该是两个不同的版本。
android {
compileSdkVersion 31 // update to 31 from 30
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.ryx.mallties"
minSdkVersion 21
targetSdkVersion 31 // update to 31 from 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
注意:不要试图修改颤振项目的现有kotlin/java配置。
java.lang.nosuchmethoderror:org.springframework.boot.builder.springapplicationbuilder.([ljava/lang/object;)V在org.springframework.cloud.bootstrap.bootstrapapplicationlistener.bootstrapserviceContext(bo
问题内容: 我要复制到 是一组对象。我正在根据某些条件进行修改。问题是,如果我修改,它也会被修改。 问题答案: 显然,您对声明的功能有一些误解。 在JavaScript中,对象是通过引用传递和分配的(更准确地说是引用的值),所以和都是对同一对象的引用。 这是一个简化的插图,可以帮助您可视化正在发生的事情 如您在分配后所看到的,两个引用都指向同一对象。 如果需要修改一个而不是另一个,则需要 创建一个
13.2.3 更改Java版本 spring-boot-starter-parent选择相当保守的Java兼容性。如果遵循我们的建议并使用更高的Java版本,您可以添加一个java.version属性: <properties> <java.version>1.8</java.version> </properties>
问题内容: 我的机器上安装了Python 2.x和3.x(Mac OS X 10.6)。对于某些事情,我想使用版本2,但对于另一些事情,我想要版本3。我喜欢IDLE软件来进行编辑/运行,但它始终使用版本3。 有什么方法可以更改IDLE使用的解释器的版本? 谢谢! 问题答案: 每个Python版本都安装了不同版本的IDLE。根据在Mac OS X上安装Python的方式,您可能会在中找到不同的文件夹
Java Checkstyle插件刚刚更新到6.0版本(Java8支持)。看来gradle用的是旧版本。我如何升级gradle checkstyle插件到更新的版本?
几年前我安装了Java版本10.0.2,但为了特定的目的需要将其更新到11.0.2(不是最新的版本13.0.2,我需要它是11.0.2)。 下载JDK-11.0.2之后,我打开了环境变量窗口,并进行了如下更改。 添加新路径