File tree 5 files changed +12
-4
lines changed
data/src/main/java/ca/bc/gov/data/datasource/remote
repository/src/main/java/ca/bc/gov/repository/worker
5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ captures/
53
53
.idea /androidTestResultsUserPreferences.xml
54
54
.idea /kotlinc.xml
55
55
.idea /migrations.xml
56
+ .idea /deploymentTargetSelector.xml
57
+ .idea /other.xml
56
58
# Android Studio 3 in .gitignore file.
57
59
.idea /caches
58
60
.idea /modules.xml
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import retrofit2.http.Query
11
11
interface HealthGatewayMobileConfigApi {
12
12
13
13
companion object {
14
- private const val MOBILE_CONFIGURATION = " MobileConfiguration "
14
+ private const val MOBILE_CONFIGURATION = " mobileconfiguration "
15
15
}
16
16
17
17
@GET(MOBILE_CONFIGURATION )
Original file line number Diff line number Diff line change @@ -37,4 +37,10 @@ data class AuthenticationResponse(
37
37
38
38
@SerializedName(" clientId" )
39
39
val clientId : String ,
40
+
41
+ @SerializedName(" androidClientId" )
42
+ val androidClientId : String ,
43
+
44
+ @SerializedName(" iosClientId" )
45
+ val iosClientId : String
40
46
)
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class MobileConfigRepository @Inject constructor(
56
56
encryptedPreferenceStorage.apply {
57
57
baseUrl = response.baseUrl
58
58
authenticationEndpoint = response.authentication.endpoint
59
- clientId = response.authentication.clientId
59
+ clientId = response.authentication.androidClientId
60
60
identityProviderId = response.authentication.identityProviderId
61
61
baseUrlIsOnline = response.online ? : false
62
62
patientDataFeatureFlag = response.patientDataSets.toSet()
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ versions.targetSdkVersion = 33
6
6
versions. compileSdkVersion = 33
7
7
8
8
// App
9
- versions. versionName = ' 2.2.0 '
10
- versions. versionCode = 240
9
+ versions. versionName = ' 2.2.1 '
10
+ versions. versionCode = 241
11
11
versions. localApiVersion = 3
12
12
13
13
// Tools & Libs
You can’t perform that action at this time.
0 commit comments