mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
chore(deps): Update and Kermit Crashlytics
This commit is contained in:
parent
568f0e8c37
commit
3b2fa5d542
4 changed files with 23 additions and 44 deletions
44
CHANGELOG.md
44
CHANGELOG.md
|
@ -7,42 +7,10 @@
|
||||||
|
|
||||||
## Other ?? Technical stuff, what happened behind the scene
|
## Other ?? Technical stuff, what happened behind the scene
|
||||||
-->
|
-->
|
||||||
## Additions
|
|
||||||
- Added option to change long tap browse and recents nav behaviour
|
|
||||||
- Added browse long tap behaviour to open global search (AshbornXS)
|
|
||||||
- Added recents long tap behaviour to open last read chapter (AshbornXS)
|
|
||||||
- Added option to backup sensitive settings (such as tracker login tokens)
|
|
||||||
- Added beta version of "Data and storage" settings (can be accessed by long tapping "Data and storage")
|
|
||||||
|
|
||||||
## Changes
|
|
||||||
- Remove download location redirection from `Settings > Downloads`
|
|
||||||
- Moved cache related stuff from `Settings > Advanced` to `Settings > Data and storage`
|
|
||||||
- Improve webview (AshbornXS)
|
|
||||||
- Show url as subtitle
|
|
||||||
- Add option to clear cookies
|
|
||||||
- Allow zoom
|
|
||||||
- Handle urls on global search (AshbornXS)
|
|
||||||
- Improve download queue (AshbornXS)
|
|
||||||
- Download badge now show download queue count
|
|
||||||
- Add option to move series to bottom
|
|
||||||
- Only show "open repo url" button when repo url is not empty
|
|
||||||
|
|
||||||
## Fixes
|
|
||||||
- Fix potential crashes for some custom Android rom
|
|
||||||
- Allow MultipartBody.Builder for extensions
|
|
||||||
- Refresh extension repo now actually refresh extension(s) trust status
|
|
||||||
- Custom manga info now relink properly upon migration
|
|
||||||
- Fixed extension repo list did not update when a repo is added via deep link
|
|
||||||
- Fixed download unread trying to download filtered (by scanlator) chapters
|
|
||||||
- Fixed extensions not retaining their repo url
|
|
||||||
- Fixed more NullPointerException crashes
|
|
||||||
- Fixed split layout caused non-split images to not load
|
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
- Migrate some StorIO queries to SQLDelight, should improve stability
|
- Some code refactors
|
||||||
- Migrate from Timber to Kermit
|
- Update firebase bom to v33.1.0
|
||||||
- Update okhttp monorepo to v5.0.0-alpha.14
|
- Update dependency co.touchlab:kermit-crashlytics to v3.9.0
|
||||||
- Refactor backup code
|
- Update dependency com.google.android.gms:play-services-oss-licenses to v17.1.0
|
||||||
- Migrate backup flags to not use bitwise
|
- Update dependency com.google.gms:google-services to v4.4.2
|
||||||
- Split it to several smaller classes
|
- Add crashlytics integration for Kermit
|
||||||
- Update androidx.compose.material3:material3 to v1.3.0-beta02
|
|
||||||
|
|
|
@ -249,7 +249,7 @@ dependencies {
|
||||||
implementation(libs.bundles.coil)
|
implementation(libs.bundles.coil)
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
implementation(libs.kermit)
|
implementation(libs.bundles.logging)
|
||||||
|
|
||||||
// Sort
|
// Sort
|
||||||
implementation(libs.java.nat.sort)
|
implementation(libs.java.nat.sort)
|
||||||
|
|
|
@ -22,6 +22,9 @@ import androidx.lifecycle.LifecycleOwner
|
||||||
import androidx.lifecycle.ProcessLifecycleOwner
|
import androidx.lifecycle.ProcessLifecycleOwner
|
||||||
import androidx.lifecycle.lifecycleScope
|
import androidx.lifecycle.lifecycleScope
|
||||||
import androidx.multidex.MultiDex
|
import androidx.multidex.MultiDex
|
||||||
|
import co.touchlab.kermit.ExperimentalKermitApi
|
||||||
|
import co.touchlab.kermit.Logger
|
||||||
|
import co.touchlab.kermit.crashlytics.CrashlyticsLogWriter
|
||||||
import coil3.ImageLoader
|
import coil3.ImageLoader
|
||||||
import coil3.PlatformContext
|
import coil3.PlatformContext
|
||||||
import coil3.SingletonImageLoader
|
import coil3.SingletonImageLoader
|
||||||
|
@ -70,10 +73,13 @@ open class App : Application(), DefaultLifecycleObserver, SingletonImageLoader.F
|
||||||
|
|
||||||
private val disableIncognitoReceiver = DisableIncognitoReceiver()
|
private val disableIncognitoReceiver = DisableIncognitoReceiver()
|
||||||
|
|
||||||
|
@OptIn(ExperimentalKermitApi::class)
|
||||||
@SuppressLint("LaunchActivityFromNotification")
|
@SuppressLint("LaunchActivityFromNotification")
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super<Application>.onCreate()
|
super<Application>.onCreate()
|
||||||
|
|
||||||
|
if (!BuildConfig.DEBUG) Logger.addLogWriter(CrashlyticsLogWriter())
|
||||||
|
|
||||||
// TLS 1.3 support for Android 10 and below
|
// TLS 1.3 support for Android 10 and below
|
||||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
|
||||||
Security.insertProviderAt(Conscrypt.newProvider(), 1)
|
Security.insertProviderAt(Conscrypt.newProvider(), 1)
|
||||||
|
|
|
@ -9,6 +9,7 @@ shizuku = "12.1.0"
|
||||||
sqlite = "2.4.0"
|
sqlite = "2.4.0"
|
||||||
sqldelight = "2.0.2"
|
sqldelight = "2.0.2"
|
||||||
junit = "5.8.2"
|
junit = "5.8.2"
|
||||||
|
kermit = "2.0.3"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
accompanist-webview = { module = "com.google.accompanist:accompanist-webview", version = "0.30.1" }
|
accompanist-webview = { module = "com.google.accompanist:accompanist-webview", version = "0.30.1" }
|
||||||
|
@ -28,19 +29,22 @@ directionalviewpager = { module = "com.github.tachiyomiorg:DirectionalViewPager"
|
||||||
disklrucache = { module = "com.jakewharton:disklrucache", version = "2.0.2" }
|
disklrucache = { module = "com.jakewharton:disklrucache", version = "2.0.2" }
|
||||||
fastadapter-extensions-binding = { module = "com.mikepenz:fastadapter-extensions-binding", version.ref = "fast_adapter" }
|
fastadapter-extensions-binding = { module = "com.mikepenz:fastadapter-extensions-binding", version.ref = "fast_adapter" }
|
||||||
fastadapter = { module = "com.mikepenz:fastadapter", version.ref = "fast_adapter" }
|
fastadapter = { module = "com.mikepenz:fastadapter", version.ref = "fast_adapter" }
|
||||||
firebase = { module = "com.google.firebase:firebase-bom", version = "33.0.0" }
|
firebase = { module = "com.google.firebase:firebase-bom", version = "33.1.0" }
|
||||||
firebase-analytics = { module = "com.google.firebase:firebase-analytics-ktx" }
|
firebase-analytics = { module = "com.google.firebase:firebase-analytics-ktx" }
|
||||||
firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics-ktx" }
|
firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics-ktx" }
|
||||||
firebase-crashlytics-gradle = { module = "com.google.firebase:firebase-crashlytics-gradle", version = "3.0.1" }
|
firebase-crashlytics-gradle = { module = "com.google.firebase:firebase-crashlytics-gradle", version = "3.0.1" }
|
||||||
flexbox = { module = "com.google.android.flexbox:flexbox", version = "3.0.0" }
|
flexbox = { module = "com.google.android.flexbox:flexbox", version = "3.0.0" }
|
||||||
flexible-adapter-ui = { module = "com.github.arkon.FlexibleAdapter:flexible-adapter-ui", version.ref = "flexible-adapter" }
|
flexible-adapter-ui = { module = "com.github.arkon.FlexibleAdapter:flexible-adapter-ui", version.ref = "flexible-adapter" }
|
||||||
flexible-adapter = { module = "com.github.arkon.FlexibleAdapter:flexible-adapter", version.ref = "flexible-adapter" }
|
flexible-adapter = { module = "com.github.arkon.FlexibleAdapter:flexible-adapter", version.ref = "flexible-adapter" }
|
||||||
google-services = { module = "com.google.gms:google-services", version = "4.4.1" }
|
google-services = { module = "com.google.gms:google-services", version = "4.4.2" }
|
||||||
gradle = { module = "com.android.tools.build:gradle", version = "8.2.0" }
|
gradle = { module = "com.android.tools.build:gradle", version = "8.2.0" }
|
||||||
guava = { module = "com.google.guava:guava", version = "31.1-android" }
|
guava = { module = "com.google.guava:guava", version = "31.1-android" }
|
||||||
image-decoder = { module = "com.github.tachiyomiorg:image-decoder", version = "e08e9be535" }
|
image-decoder = { module = "com.github.tachiyomiorg:image-decoder", version = "e08e9be535" }
|
||||||
injekt-core = { module = "com.github.inorichi.injekt:injekt-core", version = "65b0440" }
|
injekt-core = { module = "com.github.inorichi.injekt:injekt-core", version = "65b0440" }
|
||||||
kermit = { module = "co.touchlab:kermit", version = "2.0.3" }
|
|
||||||
|
kermit = { module = "co.touchlab:kermit", version.ref = "kermit" }
|
||||||
|
kermit-crashlytics = { module = "co.touchlab:kermit-crashlytics", version.ref = "kermit" }
|
||||||
|
|
||||||
material = { module = "com.google.android.material:material", version = "1.12.0" }
|
material = { module = "com.google.android.material:material", version = "1.12.0" }
|
||||||
material-design-dimens = { module = "com.dmitrymalkovich.android:material-design-dimens", version = "1.4" }
|
material-design-dimens = { module = "com.dmitrymalkovich.android:material-design-dimens", version = "1.4" }
|
||||||
markwon = { module = "io.noties.markwon:core", version = "4.6.2" }
|
markwon = { module = "io.noties.markwon:core", version = "4.6.2" }
|
||||||
|
@ -56,13 +60,13 @@ junit-android = { module = "androidx.test.ext:junit", version = "1.1.5" }
|
||||||
junrar = { module = "com.github.junrar:junrar", version = "7.5.5" }
|
junrar = { module = "com.github.junrar:junrar", version = "7.5.5" }
|
||||||
loading-button = { module = "br.com.simplepass:loading-button-android", version = "2.2.0" }
|
loading-button = { module = "br.com.simplepass:loading-button-android", version = "2.2.0" }
|
||||||
mockk = { module = "io.mockk:mockk", version = "1.13.11" }
|
mockk = { module = "io.mockk:mockk", version = "1.13.11" }
|
||||||
okio = { module = "com.squareup.okio:okio", version = "3.8.0" }
|
okio = { module = "com.squareup.okio:okio", version = "3.9.0" }
|
||||||
okhttp-brotli = { module = "com.squareup.okhttp3:okhttp-brotli", version.ref = "okhttp" }
|
okhttp-brotli = { module = "com.squareup.okhttp3:okhttp-brotli", version.ref = "okhttp" }
|
||||||
okhttp-dnsoverhttps = { module = "com.squareup.okhttp3:okhttp-dnsoverhttps", version.ref = "okhttp" }
|
okhttp-dnsoverhttps = { module = "com.squareup.okhttp3:okhttp-dnsoverhttps", version.ref = "okhttp" }
|
||||||
okhttp-logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp" }
|
okhttp-logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp" }
|
||||||
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
|
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
|
||||||
play-services-gcm = { module = "com.google.android.gms:play-services-gcm", version = "17.0.0" }
|
play-services-gcm = { module = "com.google.android.gms:play-services-gcm", version = "17.0.0" }
|
||||||
play-services-oss-licenses = { module = "com.google.android.gms:play-services-oss-licenses", version = "17.0.1" }
|
play-services-oss-licenses = { module = "com.google.android.gms:play-services-oss-licenses", version = "17.1.0" }
|
||||||
photoview = { module = "com.github.chrisbanes:PhotoView", version = "2.3.0" }
|
photoview = { module = "com.github.chrisbanes:PhotoView", version = "2.3.0" }
|
||||||
quickjs-android = { module = "app.cash.quickjs:quickjs-android", version = "0.9.2" }
|
quickjs-android = { module = "app.cash.quickjs:quickjs-android", version = "0.9.2" }
|
||||||
rxrelay = { module = "com.jakewharton.rxrelay:rxrelay", version = "1.2.0" }
|
rxrelay = { module = "com.jakewharton.rxrelay:rxrelay", version = "1.2.0" }
|
||||||
|
@ -97,6 +101,7 @@ gradle-versions = { id = "com.github.ben-manes.versions", version = "0.42.0" }
|
||||||
archive = [ "common-compress", "junrar" ]
|
archive = [ "common-compress", "junrar" ]
|
||||||
db = [ "sqldelight-android-driver", "sqldelight-android-paging", "sqldelight-coroutines" ]
|
db = [ "sqldelight-android-driver", "sqldelight-android-paging", "sqldelight-coroutines" ]
|
||||||
coil = [ "coil3", "coil3-svg", "coil3-gif", "coil3-okhttp" ]
|
coil = [ "coil3", "coil3-svg", "coil3-gif", "coil3-okhttp" ]
|
||||||
|
logging = [ "kermit", "kermit-crashlytics" ]
|
||||||
sqlite = [ "sqlite-framework", "sqlite-ktx" ]
|
sqlite = [ "sqlite-framework", "sqlite-ktx" ]
|
||||||
test = [ "junit-api", "mockk" ]
|
test = [ "junit-api", "mockk" ]
|
||||||
test-android = [ "junit-android" ]
|
test-android = [ "junit-android" ]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue