6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit fac38882
Changed files
.../seos_mobile_keys_plugin/EndpointInfoExtension.kt | 2 +- .../seosmobilekeyssdk/seos_mobile_keys_plugin/SeosMobileKeysPlugin.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
Diff
diff --git a/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/EndpointInfoExtension.kt b/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/EndpointInfoExtension.kt
index ab3df283..a049d6c1 100644
--- a/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/EndpointInfoExtension.kt
+++ b/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/EndpointInfoExtension.kt
@@ -10,7 +10,7 @@ fun EndpointInfo.mobileKeysEndpointInfo(): MobileKeysEndpointInfo {
val date = lastServerSyncDate.let { DataTypeDate(formatter.format(it), pattern) }
return MobileKeysEndpointInfo(
endpointId = seosId.toLongOrNull() ?: 0,
- environmentType = mobileKeysEnvironmentType(),
+ mobileKeysEnvironmentType = mobileKeysEnvironmentType(),
seosAppletVersion = mobileKeysAPIVersion,
fileSystemAppletVersion = fileSystemVersion,
toolsAppletVersion = toolsVersion,
diff --git a/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/SeosMobileKeysPlugin.kt b/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/SeosMobileKeysPlugin.kt
index eebc9a6f..a7f4a7b5 100644
--- a/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/SeosMobileKeysPlugin.kt
+++ b/mobilekeys_sdk_plugin/android/src/main/kotlin/com/assaabloy/flutter/seosmobilekeyssdk/seos_mobile_keys_plugin/SeosMobileKeysPlugin.kt
@@ -341,7 +341,7 @@ class SeosMobileKeysPlugin: FlutterPlugin, AppUsageAPI {
TODO("Not yet implemented")
}
- override fun connectToReader(
+ override fun connect(
reader: MobileKeysReader,
openingType: MobileKeysOpeningType,
callback: (Result<Unit>) -> Unit
@@ -349,7 +349,7 @@ class SeosMobileKeysPlugin: FlutterPlugin, AppUsageAPI {
TODO("Not yet implemented")
}
- override fun forceConnectToReader(
+ override fun forceConnect(
reader: MobileKeysReader,
openingType: MobileKeysOpeningType,
callback: (Result<Unit>) -> Unit