Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit fd8f746

Browse files
update deps + release v2.0.2
Signed-off-by: androidacy-user <opensource@androidacy.com>
1 parent eae09bf commit fd8f746

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

app/build.gradle.kts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ android {
3838
applicationId = "com.fox2code.mmm"
3939
minSdk = 24
4040
targetSdk = 33
41-
versionCode = 68
42-
versionName = "2.0.1"
41+
versionCode = 70
42+
versionName = "2.0.2"
4343
vectorDrawables {
4444
useSupportLibrary = true
4545
}
@@ -330,7 +330,7 @@ sentry {
330330

331331
autoInstallation {
332332
enabled.set(true)
333-
sentryVersion.set("6.17.0")
333+
sentryVersion.set("6.18.1")
334334
}
335335

336336
includeDependenciesReport.set(true)
@@ -414,7 +414,7 @@ dependencies {
414414
// implementation("com.google.protobuf:protobuf-javalite:3.22.2")
415415

416416
// google guava, maybe fix a bug
417-
implementation("com.google.guava:guava:31.1-android")
417+
implementation("com.google.guava:guava:31.1-jre")
418418

419419

420420
val libsuVersion = "5.0.5"
@@ -431,12 +431,12 @@ dependencies {
431431
implementation("com.github.Fox2Code:AndroidANSI:1.0.1")
432432

433433
// sentry
434-
implementation("io.sentry:sentry-android:6.17.0")
435-
implementation("io.sentry:sentry-android-timber:6.17.0")
436-
implementation("io.sentry:sentry-android-fragment:6.17.0")
437-
implementation("io.sentry:sentry-android-okhttp:6.17.0")
438-
implementation("io.sentry:sentry-kotlin-extensions:6.17.0")
439-
implementation("io.sentry:sentry-android-ndk:6.17.0")
434+
implementation("io.sentry:sentry-android:6.18.1")
435+
implementation("io.sentry:sentry-android-timber:6.18.1")
436+
implementation("io.sentry:sentry-android-fragment:6.18.1")
437+
implementation("io.sentry:sentry-android-okhttp:6.18.1")
438+
implementation("io.sentry:sentry-kotlin-extensions:6.18.1")
439+
implementation("io.sentry:sentry-android-ndk:6.18.1")
440440

441441
// Markdown
442442
// TODO: switch to an updated implementation

app/src/main/java/com/fox2code/mmm/repo/RepoData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ public boolean shouldUpdate() {
410410
long diffMinutes = diff / (60 * 1000) % 60;
411411
Timber.d("Repo " + this.id + " updated: " + diffMinutes + " minutes ago");
412412
realm.close();
413-
return diffMinutes > (BuildConfig.DEBUG ? 15 : 20);
413+
return diffMinutes > (BuildConfig.DEBUG ? 15 : 30);
414414
} else {
415415
Timber.d("Repo " + this.id + " should update could not find repo in database");
416416
Timber.d("This is probably an error, please report this to the developer");

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
extra.apply {
1212
set("sentryConfigFile", rootProject.file("sentry.properties"))
1313
set("hasSentryConfig", false)
14-
set("sentryVersion", "6.17.0")
14+
set("sentryVersion", "6.18.1")
1515
}
1616
dependencies {
1717
classpath("com.android.tools.build:gradle:8.0.0")

0 commit comments

Comments
 (0)