Skip to content

Commit

Permalink
0.26.9 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
XilinJia committed May 20, 2024
1 parent d003bc6 commit 6becd9a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
9 changes: 5 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import com.android.tools.profgen.DexFile
plugins {
id "com.android.application"
id "kotlin-android"
id "kotlin-kapt"
// id "kotlin-kapt"
id 'com.google.devtools.ksp'
id "kotlin-parcelize"
// id "checkstyle"
id "org.sonarqube" version "4.0.0.2929"
Expand Down Expand Up @@ -240,7 +241,7 @@ dependencies {
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation "androidx.room:room-runtime:${androidxRoomVersion}"
implementation "androidx.room:room-rxjava3:${androidxRoomVersion}"
kapt "androidx.room:room-compiler:${androidxRoomVersion}"
ksp "androidx.room:room-compiler:${androidxRoomVersion}"
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
// Newer version specified to prevent accessibility regressions with RecyclerView, see:
// https://developer.android.com/jetpack/androidx/releases/viewpager2#1.1.0-alpha01
Expand All @@ -252,7 +253,7 @@ dependencies {
/** Third-party libraries **/
// Instance state boilerplate elimination
implementation "frankiesardo:icepick:${icepickVersion}"
kapt "frankiesardo:icepick-processor:${icepickVersion}"
ksp "frankiesardo:icepick-processor:${icepickVersion}"

// HTML parser
implementation 'org.jsoup:jsoup:1.17.2'
Expand All @@ -274,7 +275,7 @@ dependencies {

// Metadata generator for service descriptors
compileOnly "com.google.auto.service:auto-service-annotations:${googleAutoServiceVersion}"
kapt "com.google.auto.service:auto-service:${googleAutoServiceVersion}"
ksp "com.google.auto.service:auto-service:${googleAutoServiceVersion}"

// Manager for complex RecyclerView layouts
implementation "com.github.lisawray.groupie:groupie:${groupieVersion}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ class MediaSourceManager private constructor(listener: PlaybackListener, playQue

private val edgeIntervalSignal: Observable<Long>
/*//////////////////////////////////////////////////////////////////////////
// MediaSource Loading
////////////////////////////////////////////////////////////////////////// */
// MediaSource Loading
////////////////////////////////////////////////////////////////////////// */
get() = Observable.interval(progressUpdateIntervalMillis, TimeUnit.MILLISECONDS, AndroidSchedulers.mainThread())
.filter { ignored: Long? -> playbackListener.isApproachingPlaybackEdge(playbackNearEndGapMillis) }

Expand Down
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.9.23'
ext.kotlin_version = '1.9.24'
repositories {
google()
mavenCentral()
Expand All @@ -15,6 +15,10 @@ buildscript {
}
}

plugins {
id 'com.google.devtools.ksp' version '1.9.24-1.0.20' apply false
}

allprojects {
repositories {
google()
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ There is already an open issue on [androidx.media3](https://github.com/androidx/
## 0.26.9

* suppressed Log.d message in release app
* changed kapt to ksp

0 comments on commit 6becd9a

Please sign in to comment.