Fix issue with Gelbooru-type sites. Add Test button to settings. Target Android 16 (API level 36). Update various libraries.

This commit is contained in:
Kevin Alberts 2025-09-04 22:33:44 +02:00
parent f584825082
commit d7c74beb76
6 changed files with 63 additions and 18 deletions

View file

@ -7,15 +7,14 @@ plugins {
android {
namespace = "nl.kurocon.plugin.wallpaperprovider.booru"
compileSdk = 35
compileSdk = 36
defaultConfig {
applicationId = "nl.kurocon.plugin.wallpaperprovider.booru"
minSdk = 23
targetSdk = 35
versionCode = 2
versionName = "1.1"
targetSdk = 36
versionCode = 3
versionName = "1.2"
}
buildTypes {
@ -39,13 +38,13 @@ android {
}
dependencies {
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.leanback:leanback:1.2.0-alpha04")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
implementation("androidx.core:core-ktx:1.17.0")
implementation("androidx.leanback:leanback:1.2.0")
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("com.google.android.material:material:1.13.0")
implementation("androidx.preference:preference-ktx:1.2.1")
implementation("com.google.code.gson:gson:2.11.0")
implementation("com.google.code.gson:gson:2.13.1")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("org.json:json:20210307")
implementation("org.json:json:20250517")
implementation(project(":api"))
}