-
Notifications
You must be signed in to change notification settings - Fork 30
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 streams implementation #41
Conversation
StreamRefreshListFragment fragment = new StreamRefreshListFragment(); | ||
Bundle args = new Bundle(); | ||
args.putInt(ARG_SECTION_NUMBER, sectionNumber); | ||
fragment.setArguments(args); | ||
fragment.sectionNumber = sectionNumber; | ||
fragment.sectionNumber = sectionNumber; |
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.
I think there's a copy paste error?
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.
Removed
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.
The duplicate error is still present
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.
Sorry, removed!
Done the review. You can look at the comments. |
@kylelwm I think the changes haven't been pushed. |
New changes to original pull requestChangelog1. Removed GIF player and use WebView to play GIF background instead2. Fix bug with pressing back button in main screen returning user to login screen3. Set up basic testing environment for Android client4. Wrote simple redirection tests for Android classes5. Updated JavaCV version and added filter for video to fix rotation issue6. Refactor and created several new fragments for streamer- Created a fragment for stream creation and termination- Created a fragment for stream controls- Created a fragment for actual streaming7. Added API end point for creating stream8. Redirect user to view screen when a stream is selected9. Refactor WorldScopeStream objects to be parcelable |
1dc0147
to
9752cb1
Compare
… usages to reflect the change
…ms and test getting stream in putFakeData()
…ayed on top of the preview
…ts instead of just streaming videos
…elements for confirmation
…l video streaming
…n during streaming
…can be passed as Intent extra
…ry to format time
9752cb1
to
11b722c
Compare
Please review =) |
Ok, good to proceed. |
Android streams implementation
Merged |
Created model folder with all model data inside
Implemented logout
Setup swipeRefreshLayout to list view for Android
Call and get stream data from server