基本模块不应具有拆分' AndroidManifest.xml中设置的属性
我想为我的项目生成捆绑包,其中包括三个动态功能,并且在生成捆绑包时发生了此错误。 另外,我的整个孔子在任何地方都没有“拆分”属性,并且该项目成功地在调试模式下运行。但是生成捆绑包行不通。
欢迎任何建议。
I want to generate bundle for my project which includes three dynamic features , and this error occured while generating bundle.
also there is no 'split' attribute in my whole porject manifest anywhere , and the project is run on debug mode, successfully. but generating bundle not working.
any suggestion is welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

经过 3 个小时的搜索并没有找到任何内容后,我决定看看 google 何时在捆绑包的构建过程中生成此日志。我发现它正在创建名为
base
的模块,该模块将用于合并所有功能模块。而且我自己的项目中有一个名为
base
的功能模块,我想知道是否会与该名称发生冲突而出现此问题。所以我重构并重命名了我自己的base
模块为 baseCore 和 TADA !一切顺利。最后我必须说,嘿,谷歌,你和你的开发人员,他们的系统总是浪费我们的时间,因为可笑的问题和公牛故事生成的日志和提示。after 3 hours searching and finding Nothing , I decided to see that when exactly this log is generated by google inside building process of bundle. and I found out that it is creating the module with name
base
which will be used to merge all feature modules.and also I Myself have one feature module in my project with the name of
base
, I wondered if there will be any conflict with this name that occurs this issue . so I refactored and renamed my ownbase
module to baseCore and TADA ! everything works well . finally I must say , Hey google fu.. you and your fu..ing developers with your bullsh..t system which always waste our times because of ridiculous problems and cock&bull story generated logs and hints.