From 7e024fb272a903175cbac65724217c161489a11d Mon Sep 17 00:00:00 2001 From: LazyAfternoons Date: Thu, 23 May 2024 15:43:34 +0200 Subject: [PATCH] docs: Update README.md --- README.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/README.md b/README.md index 63affc4..17a3929 100644 --- a/README.md +++ b/README.md @@ -25,24 +25,6 @@ A (Key Attestation)[https://developer.android.com/privacy-and-security/security- During key attestation, a key pair is generated along with its certificate chain hich can be used to verify the properties of that key pair. If the device supports hardware-level key attestation, the root certificate of the chain is signed using an attestation root key protected by the device's hardware-backed keystore. -### `isPlayServicesAvailable` - -Returns a boolean value indicating whether the Play Services are available on the device or not. - -```ts -try { - const isServiceAvailable = await isPlayServicesAvailable(); - if (isServiceAvailable) { - // Proceed with the following steps - } else { - // Return an error message - } -} catch (e) { - const error = e as IntegrityError; - setStatus(`Error: ${error.message}`); - console.log(JSON.stringify(e)); -} -``` ### `isPlayServicesAvailable`