bluetooth-simple-android-plugin
Advanced tools
Comparing version 0.0.11 to 0.0.12
{ | ||
"name": "bluetooth-simple-android-plugin", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "Capacitorjs plugin to use the bluetooth adapter of an android device. simply and direct / Complemento Capacitorjs para usar el adaptador bluetooth de un dispositivo Android. simple y directo", | ||
@@ -5,0 +5,0 @@ "main": "dist/plugin.cjs.js", |
@@ -11,5 +11,18 @@ # bluetooth-simple-android-plugin | ||
``` | ||
Para utilizar este plugin se necesita activar los siguientes permisos en el archivo manifest / To use this plugin you need to activate the following permissions in the manifest | ||
```xml | ||
<uses-permission android:name="android.permission.BLUETOOTH" /> | ||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
``` | ||
## API | ||
Simplemente importe la clase. Luego puede utilizar sus metodos estáricos directamente. Simply import the class. Afther, you can use its static methods directly. | ||
```typescript | ||
import { BluetoothSimple } from 'bluetooth-simple-android-plugin'; | ||
``` | ||
<docgen-index> | ||
@@ -16,0 +29,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30109
86