bump compose version, add media3
This commit is contained in:
parent
9c9bdb9435
commit
2e4bca966a
9
TODO.org
9
TODO.org
|
@ -2,11 +2,11 @@ TODO
|
|||
|
||||
* Basic functionality
|
||||
|
||||
** TODO Manage servers [1/3]
|
||||
** TODO Manage servers [3/3]
|
||||
|
||||
- [X] Create
|
||||
- [ ] Update
|
||||
- [ ] Delete
|
||||
- [X] Update
|
||||
- [X] Delete
|
||||
|
||||
** TODO Music playback [0/3]
|
||||
|
||||
|
@ -19,7 +19,8 @@ TODO
|
|||
- [ ] Select and remember selected folder
|
||||
- [ ] Download music
|
||||
|
||||
** TODO Misc. [0/1]
|
||||
** TODO Misc. [0/2]
|
||||
|
||||
- [ ] Input validation for url
|
||||
- [ ] Back key to navigate folder up
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ android {
|
|||
dependencies {
|
||||
|
||||
implementation 'androidx.core:core-ktx:1.7.0'
|
||||
implementation 'androidx.appcompat:appcompat:1.3.1'
|
||||
implementation 'androidx.appcompat:appcompat:1.4.0'
|
||||
implementation 'com.google.android.material:material:1.4.0'
|
||||
|
||||
implementation "androidx.compose.ui:ui:$compose_version"
|
||||
|
@ -76,7 +76,12 @@ dependencies {
|
|||
implementation "androidx.room:room-runtime:$room_version"
|
||||
annotationProcessor "androidx.room:room-compiler:$room_version"
|
||||
|
||||
implementation("com.squareup.okhttp3:okhttp:4.9.0")
|
||||
implementation "com.squareup.okhttp3:okhttp:4.9.0"
|
||||
|
||||
def media3_version = '1.0.0-alpha01'
|
||||
implementation "androidx.media3:media3-ui:$media3_version"
|
||||
implementation "androidx.media3:media3-exoplayer:$media3_version"
|
||||
implementation "androidx.media3:media3-session:$media3_version"
|
||||
|
||||
testImplementation 'junit:junit:4.+'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
buildscript {
|
||||
ext {
|
||||
kotlin_version = '1.5.31'
|
||||
compose_version = '1.1.0-beta02'
|
||||
compose_version = '1.1.0-beta03'
|
||||
}
|
||||
repositories {
|
||||
google()
|
||||
|
|
Loading…
Reference in New Issue
Block a user