update deps + release v2.0.2

Signed-off-by: androidacy-user <opensource@androidacy.com>
master
androidacy-user 1 year ago
parent eae09bf812
commit fd8f746a22

@ -38,8 +38,8 @@ android {
applicationId = "com.fox2code.mmm" applicationId = "com.fox2code.mmm"
minSdk = 24 minSdk = 24
targetSdk = 33 targetSdk = 33
versionCode = 68 versionCode = 70
versionName = "2.0.1" versionName = "2.0.2"
vectorDrawables { vectorDrawables {
useSupportLibrary = true useSupportLibrary = true
} }
@ -330,7 +330,7 @@ sentry {
autoInstallation { autoInstallation {
enabled.set(true) enabled.set(true)
sentryVersion.set("6.17.0") sentryVersion.set("6.18.1")
} }
includeDependenciesReport.set(true) includeDependenciesReport.set(true)
@ -414,7 +414,7 @@ dependencies {
// implementation("com.google.protobuf:protobuf-javalite:3.22.2") // implementation("com.google.protobuf:protobuf-javalite:3.22.2")
// google guava, maybe fix a bug // google guava, maybe fix a bug
implementation("com.google.guava:guava:31.1-android") implementation("com.google.guava:guava:31.1-jre")
val libsuVersion = "5.0.5" val libsuVersion = "5.0.5"
@ -431,12 +431,12 @@ dependencies {
implementation("com.github.Fox2Code:AndroidANSI:1.0.1") implementation("com.github.Fox2Code:AndroidANSI:1.0.1")
// sentry // sentry
implementation("io.sentry:sentry-android:6.17.0") implementation("io.sentry:sentry-android:6.18.1")
implementation("io.sentry:sentry-android-timber:6.17.0") implementation("io.sentry:sentry-android-timber:6.18.1")
implementation("io.sentry:sentry-android-fragment:6.17.0") implementation("io.sentry:sentry-android-fragment:6.18.1")
implementation("io.sentry:sentry-android-okhttp:6.17.0") implementation("io.sentry:sentry-android-okhttp:6.18.1")
implementation("io.sentry:sentry-kotlin-extensions:6.17.0") implementation("io.sentry:sentry-kotlin-extensions:6.18.1")
implementation("io.sentry:sentry-android-ndk:6.17.0") implementation("io.sentry:sentry-android-ndk:6.18.1")
// Markdown // Markdown
// TODO: switch to an updated implementation // TODO: switch to an updated implementation

@ -410,7 +410,7 @@ public class RepoData extends XRepo {
long diffMinutes = diff / (60 * 1000) % 60; long diffMinutes = diff / (60 * 1000) % 60;
Timber.d("Repo " + this.id + " updated: " + diffMinutes + " minutes ago"); Timber.d("Repo " + this.id + " updated: " + diffMinutes + " minutes ago");
realm.close(); realm.close();
return diffMinutes > (BuildConfig.DEBUG ? 15 : 20); return diffMinutes > (BuildConfig.DEBUG ? 15 : 30);
} else { } else {
Timber.d("Repo " + this.id + " should update could not find repo in database"); Timber.d("Repo " + this.id + " should update could not find repo in database");
Timber.d("This is probably an error, please report this to the developer"); Timber.d("This is probably an error, please report this to the developer");

@ -11,7 +11,7 @@ buildscript {
extra.apply { extra.apply {
set("sentryConfigFile", rootProject.file("sentry.properties")) set("sentryConfigFile", rootProject.file("sentry.properties"))
set("hasSentryConfig", false) set("hasSentryConfig", false)
set("sentryVersion", "6.17.0") set("sentryVersion", "6.18.1")
} }
dependencies { dependencies {
classpath("com.android.tools.build:gradle:8.0.0") classpath("com.android.tools.build:gradle:8.0.0")

Loading…
Cancel
Save