![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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 --save
yarn:
yarn add ionic-plugin-bluetoothle
ionic start ionic-bluetoothle blank
cd ionic-bluetoothle
npm install ionic-plugin-bluetoothle --save
ionic cordova plugin add cordova-plugin-bluetoothle
Edit the files like explained in the usage section
ionic cordova run android --device -lc
app.module.ts
import { BluetoothLE } from '@ionic-native/bluetooth-le';
@NgModule({
...
providers: [
...
BluetoothLE
]
})
home.ts
import { Platform } from 'ionic-angular';
import { BluetoothLE } from '@ionic-native/bluetooth-le';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
constructor(public bluetoothle: BluetoothLE, public plt: Platform) {
this.plt.ready().then((readySource) => {
console.log('Platform ready from', readySource);
this.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
Cannot find module '@ionic-native/bluetooth-le'.
run this cmd to re-copy the file to the node_modules/@ionic-native folder
node node_modules\ionic-plugin-bluetoothle\install.js
plugin_not_installed
reinstal the bluetoothle plugin
ionic cordova plugin add cordova-plugin-bluetoothle
Take a look at the development repository
You can find the doc on the original plugin repository: randdusing/cordova-plugin-bluetoothle
Known versions @ this development stage:
MIT
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.