-
Notifications
You must be signed in to change notification settings - Fork 536
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
Android组件化后 本地数据库如何设计 #756
Comments
ContentProvider;提供一个基础组件来实现基础功能 |
单独有个DB组件去做,用dagger2联调 |
理论上在组件化架构中,user 表是不应该直接暴露给业务组件的,而是应该通过接口提供给使用方 |
感谢您的关注,我会尽快给您答复
|
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
这是来自QQ邮箱的自动回复邮件。
您好,您的邮件已收到。如有后续我查收后会立刻联系您。如在假期,我将在假期结束后,尽快给您回复。
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
每个组件独立维护一套 最解耦 但是一些比较公共的表就需要多次实现(比如:user,可能每个组件都需要写一次user的增删改查);大家都是怎么处理的?求教!
The text was updated successfully, but these errors were encountered: