Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Build types: `debug` / `release`. Combined targets follow the pattern `assembleO
## SDK & Toolchain

- Min SDK 28 (Android 9), Target/Compile SDK 36
- Kotlin 2.3.10, JDK 17, AGP 9.2.1
- Kotlin 2.3.10, JDK 17, AGP 9.2.1, Gradle 9.7.1
- Version catalog: `gradle/libs.versions.toml`

## Build & Test Commands
Expand Down
32 changes: 16 additions & 16 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,48 @@
androidGradlePlugin = "9.2.1"
androidxActivity = "1.6.1"
androidxAnnotation = "1.6.0"
androidxAppCompat = "1.6.1"
androidxAppCompat = "1.8.0"
androidxArch = "2.2.0"
androidxBiometric = "1.1.0"
androidxBrowser = "1.5.0"
androidxContraintLayout = "2.1.4"
androidxBrowser = "1.10.0"
androidxContraintLayout = "2.2.2"
androidxCore = "1.10.1"
androidxEmojiPicker = "1.6.0"
androidxEnterpriseFeedback = "1.1.0"
androidxEspresso = "3.5.1"
androidxFragment = "1.5.7"
androidxEspresso = "3.7.0"
androidxFragment = "1.9.0"
androidxLegacy = "1.0.0"
androidxLifecycle = "2.5.1"
androidxLifecycleExtensions = "2.2.0"
androidxRoom = "2.8.4"
androidxSqlite = "2.5.2"
androidxTest = "1.4.0"
androidxTestExt = "1.1.5"
androidxTest = "1.7.0"
androidxTestExt = "1.3.0"
androidxTestMonitor = "1.6.1"
androidxTestUiAutomator ="2.2.0"
androidxTestUiAutomator ="2.4.0"
androidxWork = "2.8.1"
coil = "2.2.2"
coil = "2.7.0"
cyclonedx = "2.3.1"
detekt = "1.23.3"
detekt = "1.23.8"
dexopener = "2.0.5"
disklrucache = "2.0.2"
media3 ="1.1.1"
media3 ="1.11.0"
floatingactionbutton = "1.10.1"
glide = "4.15.1"
glideToVectorYou = "v2.0.0"
junit4 = "4.13.2"
koin = "4.2.2"
kotlin = "2.3.10"
kotlinxCoroutines = "1.9.0"
kotlinxCoroutines = "1.11.0"
ksp = "2.3.10"
ktlint = "14.2.0"
markwon = "4.6.2"
material = "1.8.0"
mockk = "1.13.3"
moshi = "1.15.0"
material = "1.14.0"
mockk = "1.14.11"
moshi = "1.15.2"
patternlockview = "a90b0d4bf0"
photoView = "2.3.0"
preference = "1.2.0"
preference = "1.2.1"
sonarqube = "4.0.0.2929"
stetho = "1.6.0"
timber = "5.0.1"
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
54 changes: 34 additions & 20 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 28 additions & 35 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions owncloudComLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ dependencies {
implementation(libs.moshi.kotlin) {
exclude module: "kotlin-reflect"
}
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-lang3:3.20.0'
ksp libs.moshi.kotlin.codegen

// Timber
implementation libs.timber

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.robolectric:robolectric:4.10'
testImplementation 'org.robolectric:robolectric:4.16.1'
debugImplementation 'com.facebook.stetho:stetho-okhttp3:1.6.0'

// Detekt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ data class Event<out T>(private val content: T) {
* [onEventUnhandledContent] is *only* called if the [Event]'s contents has not been handled.
*/
class EventObserver<T>(private val onEventUnhandledContent: (T) -> Unit) : Observer<Event<T>> {
override fun onChanged(event: Event<T>?) {
event?.getContentIfNotHandled()?.let { value ->
override fun onChanged(event: Event<T>) {
event.getContentIfNotHandled()?.let { value ->
onEventUnhandledContent(value)
}
}
Expand Down