diff --git a/README.md b/README.md index 2a05ba8..028123f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Moebooru -An konachan.com & yande.re application for android. +An Android application for konachan.com and yande.re. -|[](https://github.com/yueeng/moebooru/releases/latest/download/app-konachan-release.apk)|[](https://github.com/yueeng/moebooru/releases/latest/download/app-yande-release.apk)| ----|--- +| [](https://github.com/yueeng/moebooru/releases/latest/download/app-konachan-release.apk) | [](https://github.com/yueeng/moebooru/releases/latest/download/app-yande-release.apk) | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -||| ----|--- +| | | +|-----------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| diff --git a/app/build.gradle b/app/build.gradle index 1d9b8f8..28d9d0b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -95,7 +95,7 @@ dependencies { def okhttp_version = '4.12.0' def retrofit_version = '2.9.0' def room_version = '2.6.1' - def lifecycle_version = '2.6.2' + def lifecycle_version = '2.7.0' def kotlinx_coroutines_version = '1.7.3' implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version" @@ -109,7 +109,7 @@ dependencies { implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version" implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.paging:paging-runtime-ktx:3.2.1' - implementation 'androidx.activity:activity-ktx:1.8.1' + implementation 'androidx.activity:activity-ktx:1.8.2' implementation 'androidx.fragment:fragment-ktx:1.6.2' implementation 'androidx.work:work-runtime-ktx:2.9.0' implementation 'androidx.palette:palette-ktx:1.0.0' @@ -117,7 +117,7 @@ dependencies { ksp "androidx.room:room-compiler:$room_version" implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-paging:$room_version" - implementation 'com.google.android.material:material:1.10.0' + implementation 'com.google.android.material:material:1.11.0' implementation 'com.google.android.flexbox:flexbox:3.0.0' implementation 'com.google.code.gson:gson:2.10.1' implementation "com.squareup.okhttp3:okhttp:$okhttp_version" @@ -131,7 +131,7 @@ dependencies { implementation 'com.github.franmontiel:PersistentCookieJar:1.0.1' implementation 'jp.wasabeef:glide-transformations:4.3.0' implementation 'com.alexvasilkov:gesture-views:2.8.3' - implementation 'org.jsoup:jsoup:1.17.1' + implementation 'org.jsoup:jsoup:1.17.2' implementation 'com.github.yueeng:uCrop:2020.09.28' implementation 'org.kohsuke:github-api:1.315' testImplementation 'junit:junit:4.13.2' diff --git a/build.gradle b/build.gradle index b764697..90e7b84 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id 'com.android.application' version '8.2.0' apply false - id 'org.jetbrains.kotlin.android' version '1.9.21' apply false - id 'com.google.devtools.ksp' version '1.9.21-1.0.16' apply false + id 'com.android.application' version '8.2.1' apply false + id 'org.jetbrains.kotlin.android' version '1.9.22' apply false + id 'com.google.devtools.ksp' version '1.9.22-1.0.16' apply false } tasks.register('clean', Delete) {