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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Compatible with Android 6+
To integrate the SDK you have to add following dependency:
```
dependencies {
implementation 'io.github.opentdatach:ojp-android:1.3.0'
implementation 'io.github.opentdatach:ojp-android:1.3.1'
}
```
Additionally you may need to enable coreLibraryDesugaring to use Java8 features below API 26 (we use LocalDateTime for parsing)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin.code.style=official
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
# Project information
VERSION=1.3.0
VERSION=1.3.1
GROUP_ID=io.github.opentdatach
ARTIFACT_ID=ojp-android
# POM meta data
Expand Down
3 changes: 1 addition & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
[versions]
agp = "8.9.1"
agp = "8.13.0"
assertk = "0.28.1"
desugar_jdk_libs = "2.1.5"
kotlin = "2.2.0"
coreKtx = "1.15.0"
junit = "4.13.2"
extJunit = "1.2.1"
kotlinxCoroutinesTest = "1.8.0"
robolectric = "4.16"
xmlUtil = "0.91.2"
timber = "5.0.1"
koin = "3.5.3"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Apr 08 10:43:31 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 0 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@ pluginManagement {
repositories {
google()
mavenCentral()
mavenLocal()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
flatDir { dirs("${rootDir}/libs") }
google()
mavenCentral()
mavenLocal()
maven {
setUrl("http://oss.sonatype.org/content/repositories/snapshots")
isAllowInsecureProtocol = true
Expand Down
Loading