1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Don't exclude support.

This commit is contained in:
Cedric Beust 2015-12-10 01:06:13 +04:00
parent 6386f503b7
commit c6e15fc152

View file

@ -218,7 +218,7 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler, v
project.compileDependencies).map {
it.jarFile.get().path
}.filterNot {
it.contains("android.jar") || it.endsWith(".aar") || it.contains("com.android.support")
it.contains("android.jar") || it.endsWith(".aar")
|| it.contains("retrolambda")
}.toHashSet().toTypedArray()