plugin for transfer file to device android
- For sending raw json data:
import 'capacitor-plugin-bluetooth-transfer';
import { Plugins } from '@capacitor/core';
const result = await BluetoothFileTransfer.sendObject(
{ filename: 'file.txt', data: 'data to send' }
);