From 346e0c5db0f1e109ae0560c1a7c12aab0bfeb5fe Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Mon, 7 Nov 2022 10:39:52 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3b59a93..518c984 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,14 @@ ## Sample Repository https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample -## V0.4 : Basic cache mechanism +## V0.4 : Basic cache mechanism & Wait for EMDK availability ```text Added basic cache mechanism. - The IMei and the Serial number will be cached once they get retrieved. - The cache can be reset with the method: - DIHelper.resetCachedValues() - Added a mechanism to wait for the EMDK if it is not available (when responding to the BOOT_COMPLETED event for ex. - To be tested... feel free to report any issue regarding this feature. + The IMei and the Serial number will be cached once they get retrieved. + The cache can be reset with the method: + DIHelper.resetCachedValues() + Added a mechanism to wait for the EMDK if it is not available (when responding to the BOOT_COMPLETED event for ex. + To be tested... feel free to report any issue regarding this feature. ``` ## V0.3 : Update for A11 ```text From 307f226961b6e75eebaaf5ebc5509caefd0e0383 Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Mon, 7 Nov 2022 10:40:27 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 518c984..9bf4940 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample The IMei and the Serial number will be cached once they get retrieved. The cache can be reset with the method: DIHelper.resetCachedValues() - Added a mechanism to wait for the EMDK if it is not available (when responding to the BOOT_COMPLETED event for ex. + Added a mechanism to wait for the EMDK if it is not available (when responding to the BOOT_COMPLETED event for ex.) To be tested... feel free to report any issue regarding this feature. ``` ## V0.3 : Update for A11 From 7d5775fb44a842eb0bc743483f7ccdb5a29c8947 Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Mon, 7 Nov 2022 10:41:00 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9bf4940..21fd5fb 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,11 @@ https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample ## Important !! ```text Due to usage of the EMDK and the need to register the application, it is strongly advised to call the methods in your application class - Check https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample implementation. - It's a basic implementation using static members. - Feel free to remove statics and replace them with a better code in terms of architecture. - The goal was to pass the idea that theses number should be retrieved only once, and the best place for it is the Application class. - Note that a mechanism has been added in V0.4 to wait for the EMDK in case it would not be available (the classic use case is when your app respond to the BOOT_COMPLETED event that occurs way before the EMDK finishes its initialization) + Check https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample implementation. + It's a basic implementation using static members. + Feel free to remove statics and replace them with a better code in terms of architecture. + The goal was to pass the idea that theses number should be retrieved only once, and the best place for it is the Application class. + Note that a mechanism has been added in V0.4 to wait for the EMDK in case it would not be available (the classic use case is when your app respond to the BOOT_COMPLETED event that occurs way before the EMDK finishes its initialization) ``` ## Description