We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6e4d2d + 14f622f commit 454ef2fCopy full SHA for 454ef2f
library/src/main/java/cloud/pace/sdk/utils/Configuration.kt
@@ -15,9 +15,9 @@ data class Configuration @JvmOverloads constructor(
15
var domainACL: List<String> = listOf("pace.cloud", "fuel.site"),
16
var locationAccuracy: Int? = null,
17
var speedThresholdInKmPerHour: Int = 50,
18
- var geoAppsScope: String = clientId,
19
- var appsDistanceThresholdInMeters: Int = 150,
20
var oidConfiguration: CustomOIDConfiguration? = null,
+ var geoAppsScope: String = oidConfiguration?.tokenExchangeConfig?.clientId ?: clientId,
+ var appsDistanceThresholdInMeters: Int = 150,
21
var isMetaCollectorEnabled: Boolean = true
22
)
23
0 commit comments