Results 1 issues of Rorbin Qiu

已经按照wiki的插件开发指南,把宿主和插件中公用的部分抽出来发布到本地的maven私服 然后在宿主和插件中都依赖了相同的版本,但是在gradlew clean assemblePlugin后,插件的apk中依然有这部分代码,并没有剔除掉 使用gradle tools版本 3.0.1、2.3.2 宿主的build.gradle ``` apply plugin: 'com.didi.virtualapk.host' dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' implementation 'cn.monph.app:public-resource:0.0.2' implementation 'com.didi.virtualapk:core:0.9.6' }...