https://service.dcloud.net.cn/build/errorLog/5caf3da0-cfb7-11e9-8f01-197292a2ac39
7***@qq.com
- 发布:2019-09-09 10:27
- 更新:2019-09-09 13:55
- 阅读:703
1***@qq.com
怎么肯,这个的意思是你的module 中使用了 Java1.8,那你必须也要添加代码到你的app gradle
android {
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}
2019-09-09 14:39
7***@qq.com (作者)
回复 1***@qq.com: 已经是添加过了的啊,还是报这个错误啊。这个离线打包是可以的,云打包就不行了。
2019-09-09 14:45
1***@qq.com
回复 7***@qq.com: 云打包的机制不是很了解,我一直是离线打包
2019-09-09 14:49
1***@qq.com
你把你的gradle贴一下
2019-09-09 14:50
7***@qq.com (作者)
回复 1***@qq.com: apply plugin: 'com.android.library'
android {
compileSdkVersion 28
}
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
}
2019-09-09 15:15