Error: Cannot change attributes of configuration ':android:kapt' after it has been resolved when update Android Studio to 3.2
Error: Cannot change attributes of configuration ':android:kapt' after it has been resolved when update Android Studio to 3.2
今天我将 Android Studio 更新到 3.2 并收到此错误:
Cannot change attributes of configuration ':android:kapt' after it has been resolved
我已经尝试搜索一些与 "cannot change attritubtes of configuration...after it has been resovled" 类似的错误,但其中 none 对我有用。
我在 gradle.properties 中将 configureOnDemand 设置为 false,我的两个存储库块如下所示:
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
google()
更新:我将其缩小到将构建 gradle 更新到 3.2 的原因。所以我现在必须使用 3.1。
我看到你的 LibGDX 项目有问题 (来自你附加的 build.gradle
文件)
Cannot change attributes of configuration ':android:kapt' after it has
been resolved.
是一个 issue that has been resolved by detaching native task by this 提交。
解决方案:
- 如果您要创建新项目,请使用 latest build of LibGDX
1.9.8
- 否则在 android
build.gradle
文件中进行必要的更改(您可以使用 this 作为参考)
今天我将 Android Studio 更新到 3.2 并收到此错误:
Cannot change attributes of configuration ':android:kapt' after it has been resolved
我已经尝试搜索一些与 "cannot change attritubtes of configuration...after it has been resovled" 类似的错误,但其中 none 对我有用。
我在 gradle.properties 中将 configureOnDemand 设置为 false,我的两个存储库块如下所示:
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
google()
更新:我将其缩小到将构建 gradle 更新到 3.2 的原因。所以我现在必须使用 3.1。
我看到你的 LibGDX 项目有问题 (来自你附加的 build.gradle
文件)
Cannot change attributes of configuration ':android:kapt' after it has been resolved.
是一个 issue that has been resolved by detaching native task by this 提交。
解决方案:
- 如果您要创建新项目,请使用 latest build of LibGDX
1.9.8
- 否则在 android
build.gradle
文件中进行必要的更改(您可以使用 this 作为参考)