Skip to content

Commit b51678a

Browse files
update deps
Signed-off-by: androidacy-user <opensource@androidacy.com>
1 parent c970195 commit b51678a

3 files changed

Lines changed: 18 additions & 15 deletions

File tree

app/build.gradle.kts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -450,14 +450,14 @@ dependencies {
450450
implementation("com.github.KieronQuinn:MonetCompat:0.4.1")
451451
implementation("com.github.Fox2Code.FoxCompat:foxcompat:1.2.14")
452452
implementation("com.github.Fox2Code.FoxCompat:hiddenapis:1.2.14")
453-
implementation("com.mikepenz:aboutlibraries:10.7.0")
453+
implementation("com.mikepenz:aboutlibraries:10.8.0")
454454

455455
// Utils
456456
implementation("androidx.work:work-runtime:2.8.1")
457-
implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.10")
458-
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:5.0.0-alpha.10")
457+
implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.11")
458+
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:5.0.0-alpha.11")
459459
// logging interceptor
460-
implementation("com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.10")
460+
implementation("com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.11")
461461
// Chromium cronet from androidacy
462462
implementation("org.chromium.net:cronet-embedded:113.5672.61")
463463

@@ -482,12 +482,12 @@ dependencies {
482482
implementation("com.github.Fox2Code:AndroidANSI:1.2.1")
483483

484484
// sentry
485-
implementation("io.sentry:sentry-android:6.23.0")
486-
implementation("io.sentry:sentry-android-timber:6.23.0")
487-
implementation("io.sentry:sentry-android-fragment:6.23.0")
488-
implementation("io.sentry:sentry-android-okhttp:6.23.0")
489-
implementation("io.sentry:sentry-kotlin-extensions:6.23.0")
490-
implementation("io.sentry:sentry-android-ndk:6.23.0")
485+
implementation("io.sentry:sentry-android:6.24.0")
486+
implementation("io.sentry:sentry-android-timber:6.24.0")
487+
implementation("io.sentry:sentry-android-fragment:6.24.0")
488+
implementation("io.sentry:sentry-android-okhttp:6.24.0")
489+
implementation("io.sentry:sentry-kotlin-extensions:6.24.0")
490+
implementation("io.sentry:sentry-android-ndk:6.24.0")
491491

492492
// Markdown
493493
// TODO: switch to an updated implementation
@@ -530,13 +530,13 @@ dependencies {
530530
implementation("com.github.fingerprintjs:fingerprint-android:2.0.0")
531531

532532
// room
533-
implementation("androidx.room:room-runtime:2.5.1")
533+
implementation("androidx.room:room-runtime:2.5.2")
534534

535535
// To use Kotlin Symbol Processing (KSP)
536-
ksp("androidx.room:room-compiler:2.5.1")
536+
ksp("androidx.room:room-compiler:2.5.2")
537537

538538
// optional - Kotlin Extensions and Coroutines support for Room
539-
implementation("androidx.room:room-ktx:2.5.1")
539+
implementation("androidx.room:room-ktx:2.5.2")
540540
}
541541

542542
android {

app/src/main/kotlin/com/fox2code/mmm/manager/ModuleManager.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class ModuleManager private constructor() : SyncManager() {
6161
if (BuildConfig.DEBUG) Timber.d("Scan")
6262
val modulesList = StringBuilder()
6363
if (modules != null) {
64+
Timber.i("Found %d modules on device in data", modules.size)
6465
val db = Room.databaseBuilder(
6566
MainApplication.INSTANCE!!,
6667
ModuleListCacheDatabase::class.java,
@@ -136,6 +137,8 @@ class ModuleManager private constructor() : SyncManager() {
136137
.append(",")
137138
}
138139
db.close()
140+
} else {
141+
Timber.i("No modules on device in data")
139142
}
140143
if (modulesList.isNotEmpty()) {
141144
modulesList.deleteCharAt(modulesList.length - 1)

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
# This option should only be used with decoupled projects. More details, visit
1111
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1212
# org.gradle.parallel=true
13-
#Mon Jun 19 16:29:35 EDT 2023
13+
#Mon Jun 26 15:44:05 EDT 2023
1414
android.defaults.buildfeatures.buildconfig=true
1515
android.enableJetifier=false
1616
android.enableR8.fullMode=true
1717
android.useAndroidX=true
1818
org.gradle.caching=true
1919
org.gradle.configuration-cache=true
2020
org.gradle.configuration-cache.problems=warn
21-
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M" -Dfile.encoding\=UTF-8 -XX\:+UseParallelGC -XX\:ReservedCodeCacheSize\=768m
21+
org.gradle.jvmargs=-Xmx1536M -Dkotlin.daemon.jvm.options\="-Xmx1536M" -Dfile.encoding\=UTF-8 -XX\:+UseParallelGC -XX\:ReservedCodeCacheSize\=768m
2222
org.gradle.parallel=true

0 commit comments

Comments
 (0)