我使用的是android库名com.growingio.android:vds-android-agent:1.1.1@aar
。它需要使用插件来转换我的代码在工件状态。库名称为com.growingio.android
,其中buildscipt依赖项为classpath 'com.growingio.android:vds-gradle-plugin:1.1.1'
但是在每installDebug
之后转换代码需要很长时间,而我只想在发布版本中使用此插件。
我使用变体将我的代码拆分为debug
和release
变体。仅在release
变体中,我的项目使用releaseImplementation
来包含他们的aar。我的debug
变种没有以任何方式导入或使用他们的代码来加速installDebug
中的构建。但他们的插件只是扫描并尝试转换我的代码,无论如何。
请注意,在installDebug
的个人资料报告中,他们的插件转换任务最耗时。
有人可以帮助我吗?