From acb39e5849f368e2d2ac75baa5d341b189206e27 Mon Sep 17 00:00:00 2001 From: uzosocom <7zu6s87y9fku@gmail.com> Date: Sun, 9 Oct 2022 23:28:00 +0900 Subject: [PATCH] feat(device): add sdkVersion (#4354) --- src/@awesome-cordova-plugins/plugins/device/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/@awesome-cordova-plugins/plugins/device/index.ts b/src/@awesome-cordova-plugins/plugins/device/index.ts index e4707d59..6cf1ffcd 100644 --- a/src/@awesome-cordova-plugins/plugins/device/index.ts +++ b/src/@awesome-cordova-plugins/plugins/device/index.ts @@ -62,4 +62,8 @@ export class Device extends AwesomeCordovaNativePlugin { /** Get the device hardware serial number. */ @CordovaProperty() serial: string; + + /** Get the Android device's SDK version. (Android-only) */ + @CordovaProperty() + sdkVersion?: string; }