-
Notifications
You must be signed in to change notification settings - Fork 3k
Android-centric package reorganization (#65) #66
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
Conversation
This change introduces new, Android centric packages including * rx.android.content for android.content related classes * rx.android.view for android.view related classes * rx.android.widget for android.widget related classes * rx.android.util for package agnostic classes Then it moves existing classes based on their Android counterparts. Although one of the goal is to reduce the number of publics, this change still does nothing but class move. More changes will follow.
Looks like we are on the right track! 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert
LGTM. Couple small things. |
This allows some contnet-related internal classes package local.
Some ViewObservable methods are for android.widget.* classes. This change moves these to newly introduced WidgetObservable. This turns some internal classes from public to package-local.
Thanks for the view Jake! The updated branch should address the feedback. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be in an internal package? I don't think it's our responsibility to expose this in a public API.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense. As there is only one internal class so far, I just renamed util to internal.
This looks great. Will merge on green. Thanks! |
Android-centric package reorganization (#65)
Here is a first cut.
What seems good for me:
What doesn't look great but not sure how can be better:
WDYT? Comments are appreciated.