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.1.3'
implementation 'io.github.opentdatach:ojp-android:1.2.0'
}
```
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.1.3
VERSION=1.2.0
GROUP_ID=io.github.opentdatach
ARTIFACT_ID=ojp-android
# POM meta data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ data class StopPlaceDto(
override val privateCodes: List<PrivateCodeDto>? = emptyList(),
@PropertyElement(name = "StopPlaceRef")
val stopPlaceRef: String,
@Element(name = "Name")
@Element(name = "StopPlaceName")
val name: NameDto?,
@Element(name = "NameSuffix")
val nameSuffix: NameDto?,
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/test/resources/adapter/place/stop_place.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Place>
<StopPlace>
<StopPlaceRef>8501120</StopPlaceRef>
<Name>
<StopPlaceName>
<Text xml:lang="de">Lausanne</Text>
</Name>
</StopPlaceName>
<PrivateCode>
<System>EFA</System>
<Value>107099</Value>
Expand Down
Loading