Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ionic-plugin-bluetoothle
Advanced tools
Ionic Native plugin wrapper for cordova-plugin-bluetoothle
Ionic Native plugin wrapper for cordova-plugin-bluetoothle
npm:
npm install ionic-plugin-bluetoothle && npm run build
yarn:
yarn add ionic-plugin-bluetoothle && npm run build
app.module.ts
import { BluetoothLE } from '@ionic-native/bluetooth-le';
@NgModule({
...
providers: [
...
BluetoothLE
]
})
home.ts
import { BluetoothLE } from '@ionic-native/bluetooth-le';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
constructor(public bluetoothle: BluetoothLE) {
bluetoothle.initialize().then(ble => {
console.log('ble', ble.status) // logs 'enabled'
});
}
Informations about methods can be found on the original plugin repository: randdusing/cordova-plugin-bluetoothle
A full working example can be found in ./example:
git clone https://github.com/somq/ionic-plugin-bluetoothle-dev.git
cd ionic-plugin-bluetoothle/example
npm i
ionic cordova plugin add cordova-plugin-bluetoothle &&
ionic cordova run android --device -lc
git clone https://github.com/somq/ionic-plugin-bluetoothle-dev.git
cd ionic-plugin-bluetoothle
edit ./src/@ionic-native/plugins/bluetooth-le/index.ts
git clone https://github.com/somq/ionic-plugin-bluetoothle-dev.git
cd ionic-plugin-bluetoothle
You can find the doc on the original plugin repository: randdusing/cordova-plugin-bluetoothle
Ionic Native version: "4.5.1",
todo
FAQs
Ionic Native plugin wrapper for cordova-plugin-bluetoothle
The npm package ionic-plugin-bluetoothle receives a total of 17 weekly downloads. As such, ionic-plugin-bluetoothle popularity was classified as not popular.
We found that ionic-plugin-bluetoothle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.