Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fakeyatogod committed Oct 25, 2023
1 parent 1693542 commit fdf59fd
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions AnimeScrapCommon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ android {

dependencies {

implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'com.google.android.material:material:1.10.0'

// Network
implementation 'org.jsoup:jsoup:1.15.2' // Web scraping tool
Expand Down
24 changes: 12 additions & 12 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ plugins {
android {

namespace 'com.talent.animescrap'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "com.talent.animescrap"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 18
versionName "2.4.5"
archivesBaseName = "AnimeScrap"
Expand Down Expand Up @@ -63,27 +63,27 @@ android {

dependencies {

implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'com.google.android.material:material:1.10.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation project(path: ':AnimeScrapCommon')

// ExoPlayer + HLS + UI + MediaSession
def exo_version = "2.18.7"
def exo_version = "2.19.1"
implementation "com.google.android.exoplayer:exoplayer:$exo_version"
implementation "com.google.android.exoplayer:exoplayer-ui:$exo_version"
implementation "com.google.android.exoplayer:exoplayer-hls:$exo_version"
implementation "com.google.android.exoplayer:extension-mediasession:$exo_version"

// MVVM
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.2'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1'

// Navigation - Jetpack
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.4'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.4'

// Network
implementation 'org.jsoup:jsoup:1.15.2' // Web scraping tool
Expand All @@ -92,7 +92,7 @@ dependencies {
implementation 'io.coil-kt:coil:2.2.2' // Photo from network

// Room components
def roomVersion = '2.5.1'
def roomVersion = '2.6.0'
implementation "androidx.room:room-ktx:$roomVersion"
kapt "androidx.room:room-compiler:$roomVersion"
androidTestImplementation "androidx.room:room-testing:$roomVersion"
Expand All @@ -101,7 +101,7 @@ dependencies {
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'

// Preference / Settings
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.preference:preference-ktx:1.2.1'

// Hilt dependency injection
implementation "com.google.dagger:hilt-android:2.44.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,14 @@ internal class CircleClipTapView(context: Context, attrs: AttributeSet) : View(c
updatePathShape()
}

override fun onDraw(canvas: Canvas?) {
override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)

// Background
canvas?.clipPath(shapePath)
canvas?.drawPath(shapePath, backgroundPaint)
canvas.clipPath(shapePath)
canvas.drawPath(shapePath, backgroundPaint)

// Circle
canvas?.drawCircle(cX, cY, currentRadius, circlePaint)
canvas.drawCircle(cX, cY, currentRadius, circlePaint)
}
}

0 comments on commit fdf59fd

Please sign in to comment.