import { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { appId: 'com.company.bletest', appName: 'myapp', webDir: 'dist', bundledWebRuntime: false, plugins:{ "BluetoothLe":{ "displayStrings": { "scanning":"Scanning BLE...", "cancel":"Stop Scanning", "availableDevices":"Devices available!", "noDeviceFound": "No BLE devices found." } } } }; export default config;