-
Notifications
You must be signed in to change notification settings - Fork 623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for AS code intelligent 增加主 lib 和 sub lib 之间的代码联系 #148
Comments
这个应该是可以天然支持的,插件内部为了解决这个问题,为每一个 |
@kezong 不过我发现有一个解决方法 :在 main lib 中用 flavor 进行区分, e.g.
缺点是需要在源码依赖 main lib 的地方,设置 app 的 @kezong kezong 你觉得这个方法如何, 有别的好的方法吗? 或者说你指的那个自动关联已经可以完成我想要的这种关联到源码的功能的话,请告诉我一下,那就不需要这么麻烦的操作了。 |
@wkmcyz 我这边的工程main-lib引用了sub-lib,是可以直接关联到源码的,并不是关联到.class文件。 你可以试一下example,看是否能够关联。 |
No, 我试了,但是并不行。mainlib 引用 aar2 的类使用 embed 是不能被 IDE 解析的,改成 implementation 后可以。
我的 AS 版本 : |
@wkmcyz |
可以是可以了, 但是我测试 1.2.13 也可以, 不过还没细看具体哪个 commit 修复的。 反正不是你修改的那个 commit ( 除非你 1.2.13 也发成了 1.2.15 的代码了) |
As now we can not link code in main lib and sub libs while in development , AS can not do this because
implementation
is replaced byembed
(Gradle plugin : 3.4.2 , Gradle : 5.5.1). This is very inconvenient because you need to switch betweenimplementation
andembed
when in development or when publishing. Maybe we can find some ways to do with this and make it more convenenient 💯 .希望增加一个方法来避免开发期间 main lib 和 sub lib 无法被 IDE 自动关联的问题(因为没有用 implementation , Gradle plugin : 3.4.2 , Gradle : 5.5.1) , 这就很苦恼了啊,必须在开发期间手动修改 embed 为 implementation , 然后等到要发布的时候在修改这些为 embed , 我寻思能不能找个办法来给它整整。
The text was updated successfully, but these errors were encountered: