ComponentCornerstone icon indicating copy to clipboard operation
ComponentCornerstone copied to clipboard

:ant::ant: 一种全新的android组件化方案,无需下沉公用代码,无需采用路由等硬编码方式分发sdk,独立维护组件暴露的SDK/IMPL,打破官方模块循环且支持组件间互相调用SDK,支持集成组件调试/组件独立运行。A brand...

Results 3 ComponentCornerstone issues
Sort by recently updated
recently updated
newest added

我现有的项目 setting.gradle 中: ` include ':debugEntry' include ':libs:net' include ':component:explore' include ':component:mine' include ':service:account' include ':libs:base' include ':app' ` 在component.gradle 中必须: ` include ':app', ':debugEntry', ':explore', ':mine', ':account' ` 才能正常识别component,...

将插件引入工程后,改动工程里面的某些代码,重新运行整个工程经常会遇到这个问题: ``` app\build\intermediates\compile_and_runtime_not_namespaced_r_class_jar\debug\R.jar:另一个程序正在使用此文件,进程无法访问。 ``` 我也试用过 MIS,也有类似的问题,不知道这个问题是个例还是都有。 虽然 Clean 一下工程,就可以再次运行了,但是,还是很影响开发体验。