HujiangTechnology / gradle_plugin_android_aspectjx

A Android gradle plugin that effects AspectJ on Android project and can hook methods in Kotlin, aar and jar file.
Apache License 2.0
3.93k stars 568 forks source link

特定环境编译异常:zip file is empty #300

Closed JooperGe closed 3 years ago

JooperGe commented 3 years ago

基本配置: AndroidStudio 4.1.1 aspectjx 2.0.10 gradle 4.1.0

编译异常配置: kotlin 1.4.10

编译正常配置: kotlin 1.3.72

zfhuang-cn commented 3 years ago

kotlin 1.4.10里加了个META-INF/versions/9/module-info.class,可以使用配置的方式把他排除掉

aspectjx {
    exclude 'versions.9'
}