feat(device): add sdkVersion (#4354)

This commit is contained in:
uzosocom 2022-10-09 23:28:00 +09:00 committed by GitHub
parent 74302846dc
commit acb39e5849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}