Skip to content

Commit

Permalink
Increase default concurrency to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
layou233 committed Nov 11, 2023
1 parent ab26eae commit a34b898
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ object Preferences {
return if (stored > 0) {
stored
} else {
5
16
}
}
set(value) {
if (value == 5) { // set to default
if (value == 16) { // set to default
sharedPreferences.edit().remove(MAX_CONCURRENT_PINGS).apply()
} else if (value > 0) {
sharedPreferences.edit().putInt(MAX_CONCURRENT_PINGS, value).apply()
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.2" apply false
id("com.android.application") version "8.1.3" apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("com.google.devtools.ksp") version "1.9.0-1.0.12" apply false
}

0 comments on commit a34b898

Please sign in to comment.