我正在尝试在我的应用程序中使用retrolambda,但我遇到了问题
build.gradle项目
@media only screen and (max-width:420px) {
.ul-bottom {
position: relative;
}
}
build.gradle app
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
任何人都可以帮我解决问题
谢谢
答案 0 :(得分:5)
1.将Android工作室更新为2.1或更高版本; 2.删除“apply plugin:'me.tatarka.retrolambda'” 试试吧!
答案 1 :(得分:1)
删除为我工作的行apply plugin: 'me.tatarka.retrolambda'
。
答案 2 :(得分:0)
可能坚持retrolambda。关于杰克的一些讨论可以找到here