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 @@ -14,7 +14,7 @@
Our SDK is available on Maven Central.

```groovy
implementation 'de.contentpass:contentpass-android:2.1.0'
implementation 'de.contentpass:contentpass-android:2.1.1'
```

Add this to your app's `build.gradle` file's `dependencies` element.
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ kapt {
extra.apply{
set("PUBLISH_GROUP_ID", "de.contentpass")
set("PUBLISH_ARTIFACT_ID", "contentpass-android")
set("PUBLISH_VERSION", "2.1.0")
set("PUBLISH_VERSION", "2.1.1")
}

apply("${rootProject.projectDir}/scripts/publish-module.gradle")
3 changes: 2 additions & 1 deletion lib/src/main/java/de/contentpass/lib/Authorizer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ internal class Authorizer(
.setPrompt("consent")
.setAdditionalParameters(
mutableMapOf(
Pair("cp_route", "login")
Pair("cp_route", "login"),
Pair("cp_property", propertyId)
)
).build()
}
Expand Down
Loading