作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我是 android 开发的新手。
我正在创建一个 android 库 (.aar),gradle 中的库变体如下:
variant.outputs.all {
output -> def outputFile = output.outputFile
if (outputFile != null && outputFile.name.endsWith('.aar'))
{
def fileName = "${archivesBaseName}.aar"
output.outputFile = new File(outputFile.parent, fileName)
}
}
错误是:
无法为 com.android.build.gradle.internal.api.LibraryVariantOutputImpl 类型的对象设置只读属性“outputFile”的值。
以前,它工作正常。但是现在我已经将 android studio 更新到 3.0 并且 gradle 插件导致了这个错误。
这个问题在这里已经有了答案: Android Gradle 3.0.0-alpha2 plugin, Cannot set the value of read-only property 'outp
我是一名优秀的程序员,十分优秀!