Skip to content

Commit

Permalink
fix(diagnostic): add getBluetoothAuthorizationStatus function (#4398)
Browse files Browse the repository at this point in the history
  • Loading branch information
mverdon authored Nov 4, 2022
1 parent 755b28e commit c544b43
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/@awesome-cordova-plugins/plugins/diagnostic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,16 @@ export class Diagnostic extends AwesomeCordovaNativePlugin {
return;
}

/**
* Returns the Bluetooth authorization status of the application on the device.
*
* @returns {Promise<any>}
*/
@Cordova({ platforms: ['Android', 'iOS'] })
getBluetoothAuthorizationStatus(): Promise<any> {
return;
}

/**
* Checks if the application is authorized to use external storage.
*
Expand Down

0 comments on commit c544b43

Please sign in to comment.