Skip to content
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

(Proposal) [#264] media3 integration #266

Merged
merged 46 commits into from
Apr 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
4d024e6
init :core:playback module
workspace Aug 30, 2023
69cb906
sessions.json에 video sample 추가
workspace Aug 30, 2023
3c0e6ef
Video model 추가 및 Mapper 수정
workspace Aug 30, 2023
7495ff4
GithubRawApi의 endPoint를 workspace 소유 repository의 media3 branch로 변경
workspace Aug 30, 2023
ef74596
Session model 내 video type을 non-null로 수정
workspace Aug 30, 2023
e3ce3fe
media3 dependencies 추가
workspace Aug 30, 2023
b4504e6
sessions.json 업데이트
workspace Aug 31, 2023
145707a
core:playback dependencies 업데이트
workspace Aug 31, 2023
8fde836
Merge branch 'main' of github.com:droidknights/DroidKnights2023_App i…
workspace Aug 31, 2023
c684829
libs.versions.toml update
workspace Aug 31, 2023
dce8d02
재생 중인 Session의 id를 datastore에 기록
workspace Aug 31, 2023
9a5e251
재생 중인 Session id를 저장/조회할 수 있도록 SessionRepository 수정 및 Usecase 구현
workspace Aug 31, 2023
64f7472
core:playback 구현
workspace Aug 31, 2023
9190130
feature:player 구현
workspace Aug 31, 2023
a31c1c0
feature:session에서 player로의 route 구현
workspace Aug 31, 2023
a399cf8
feature:main에서 player NavGraph 연결
workspace Aug 31, 2023
baa6902
플레이어 가로 화면에서 시스템 UI가 사라지는 동작 구현
workspace Aug 31, 2023
172945e
app module에서 SessionActivityIntentProvider 및 di 구현
workspace Aug 31, 2023
01ef8b9
fix: FOREGROUND_SERVICE 권한 추가
workspace Aug 31, 2023
8897b93
Android Auto 지원
workspace Aug 31, 2023
4fda44b
onPlaybackResumption 대응 추가
workspace Sep 1, 2023
a6239cf
Android Automotive 지원 추가
workspace Sep 1, 2023
b6c95ec
package rename tv -> automotive
workspace Sep 1, 2023
11f16f3
누락된 feature:player dependency 추가
workspace Sep 1, 2023
1ac9923
compile sdk 34로 상향
workspace Sep 1, 2023
3be75f9
tv app 구현
workspace Sep 1, 2023
6cd0f3a
라이브러리 최신화
workspace Sep 1, 2023
c55d900
wear os app 구현
workspace Sep 2, 2023
93c5e6a
lint fix
workspace Sep 2, 2023
ab565ef
Merge remote-tracking branch 'origin/main' into media3
workspace Sep 14, 2023
7d9204d
GithubRawApi url 변경
workspace Sep 14, 2023
8f3638c
Merge remote-tracking branch 'origin/reference-media3' into media3
workspace Sep 14, 2023
ef0a703
Application -> @ApplicationContext로 대체
workspace Oct 10, 2023
99b5a04
wear, tv SessionCardPreview를 위한 data에 isBookmarked 추가
workspace Oct 10, 2023
35a16d2
PlaybackStateListener에서 player를 attach할 때 중복되는 기존 job을 취소 처리
workspace Oct 10, 2023
9955684
GetBookmarkedSessionsUseCaseTest 수정
workspace Oct 10, 2023
8f4377c
재생 중인 Session을 저장하는 로직 관련 수정
workspace Oct 10, 2023
eb2781b
fix: DefaultSessionRepositoryTest
workspace Oct 11, 2023
d905dc4
불필요한 underscore 제거
workspace Oct 11, 2023
e788ab6
try catch 구문을 runCatching으로 대체
workspace Oct 11, 2023
649e73c
Session의 video를 non-null -> nullable type으로 변경
workspace Oct 11, 2023
29674ec
POST_NOTIFICATIONS permission 추가
workspace Oct 11, 2023
aec471e
fix lint
workspace Oct 11, 2023
2263e4c
README 업데이트
workspace Oct 11, 2023
bb6dc76
request endpoint를 folk repository url로 변경
workspace Oct 11, 2023
e4ad4f1
Merge pull request #4 from workspace/media3-main
workspace Apr 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' of github.com:droidknights/DroidKnights2023_App i…
…nto media3
workspace committed Aug 31, 2023
commit 8fde8367eca9cf59dbcbebcd4825de642716c460
Original file line number Diff line number Diff line change
@@ -160,7 +160,11 @@ private fun SessionDetailContent(
Spacer(modifier = Modifier.height(16.dp))
SessionOverview(content = session.content)
}
SessionDetailSpeaker(session.speakers.toPersistentList())
Spacer(modifier = Modifier.height(40.dp))
Divider(thickness = 1.dp, color = MaterialTheme.colorScheme.outline)
Spacer(modifier = Modifier.height(40.dp))

SessionDetailSpeaker(session.speakers.first())
Button(
modifier = Modifier
.padding(top = 16.dp)
You are viewing a condensed version of this merge commit. You can view the full changes here.