我已经开始在我的应用程序中实现即时应用程序功能。我设法过渡到基本模块并正确构建了可安装的应用程序。基本模块具有3种构建类型:
buildTypes {
release {...}
acceptance {...}
debug {...}
当我尝试将即时应用程序构建为具有build.gradle文件的单独模块时:
apply plugin: 'com.android.instantapp'
dependencies {
implementation project(':base')
}
我收到以下错误消息:
无法在project:app的以下变体之间进行选择: -inchargeAcceptanceBundleElements -inchargeAcceptanceRuntime -inchargeAcceptanceUnitTestCompile ... (如果需要,我可以给出完整的堆栈跟踪的时间更长)
我试图更改InstantApp / build.gradle: 实施项目(路径:“:base”,配置:“默认”)
但是我得到:
无法解决':instantapp @ debug / compileClasspath'的依赖关系:无法使用转换IdentityTransform转换文件'base-release.aar'以匹配属性{artifactType = processed-aar}
然后,应用程序模块本身具有4种产品口味,但是我认为这没关系。
任何建议如何运行Instantapp模块?