Skip to content

Commit

Permalink
fix(ble): add missing method "isLocationEnabled" (#3495)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenlongming authored Aug 14, 2020
1 parent 5aa5757 commit b4462d5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/@ionic-native/plugins/ble/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,4 +607,15 @@ export class BLE extends IonicNativePlugin {
bondedDevices(): Promise<any[]> {
return;
}

/**
* Reports if location services are enabled.
* Android only
*
* @returns {Promise<void>}
*/
@Cordova()
isLocationEnabled(): Promise<void> {
return;
}
}

0 comments on commit b4462d5

Please sign in to comment.