gpt4 book ai didi

android - ionic 电容器 BLE 插件扫描不起作用

转载 作者:行者123 更新时间:2023-12-04 10:13:47 25 4
gpt4 key购买 nike

我正在学习 ionic 5 并想创建一个简单的应用程序,该应用程序显示附近所有支持蓝牙的手机的列表。我的问题是,当我使用 BLE 插件的调用扫描时,我的回调方法永远不会被调用。我在连接的手机(三星 9 )上测试了这个,还通过生成 app-debug.apk 并安装在手机上。

这是我的项目的详细信息。我正在将 Capacitor 用于 native 应用程序。

开发工具包:
enter image description here

tab-1.ts

import { Component, NgZone } from '@angular/core';
import { BLE } from '@ionic-native/ble/ngx';
import { AlertController } from '@ionic/angular';

@Component({
selector: 'app-tab1',
templateUrl: 'tab1.page.html',
styleUrls: ['tab1.page.scss']
})
export class Tab1Page {
text = 'hello';
devices: any[] = [];
constructor(private ble: BLE,
private ngZone: NgZone,
public alertController: AlertController) { }
scan() {
this.text = 'Loading...';
console.log('going to this.scan.....');
this.devices = [];
this.showAlert('starting scan.....');


this.ble.scan([], 60).subscribe(devices1=>{
this.showDeviceList(devices1);
this.text = devices1;
this.showAlert('scan finished success');
},error=> this.showAlert('scan fini with error'),
()=>this.showAlert('scan void finish'));
}

async showDeviceList(devices) {
const alert = await this.alertController.create({
header: 'Alert',
subHeader: 'Subtitle',
message: 'Going to start scan',
buttons: ['OK']
});
await alert.present();
console.log('devices are ', devices);
this.ngZone.run(() => {
this.devices.push(...devices);
this.text = 'finished';
});
}

async showAlert(msg){
const alert = await this.alertController.create({
header: 'Alert',
subHeader: 'Subtitle',
message: msg,
buttons: ['OK']
});
await alert.present();
}
}

ionic 信息:

enter image description here

Package.json:
{
"name": "COVID-TRACKING",
"version": "0.0.1",
"author": "Ionic Framework",
"homepage": "https://ionicframework.com/",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/common": "~8.2.14",
"@angular/core": "~8.2.14",
"@angular/forms": "~8.2.14",
"@angular/platform-browser": "~8.2.14",
"@angular/platform-browser-dynamic": "~8.2.14",
"@angular/router": "~8.2.14",
"@capacitor/android": "^2.0.1",
"@capacitor/core": "2.0.1",
"@ionic-native/ble": "^5.23.0",
"@ionic-native/core": "^5.0.7",
"@ionic-native/splash-screen": "^5.0.0",
"@ionic-native/status-bar": "^5.0.0",
"@ionic/angular": "^5.0.0",
"cordova-plugin-ble-central": "^1.2.4",
"core-js": "^2.5.4",
"rxjs": "~6.5.1",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.20",
"@angular/cli": "~8.3.23",
"@angular/compiler": "~8.2.14",
"@angular/compiler-cli": "~8.2.14",
"@angular/language-service": "~8.2.14",
"@capacitor/cli": "2.0.1",
"@ionic/angular-toolkit": "^2.1.1",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "^5.0.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.4.3"
},
"description": "An Ionic project"
}

插件安装命令:
npm install cordova-plugin-ble-central
npm install @ionic-native/ble
ionic cap sync

最佳答案

问题仅在于 android 10。您需要在 android 10 中获得背景位置权限才能使蓝牙工作。您需要为 AndroidManifest.xml 添加后台位置权限,并且即使您不打算使用它,您也需要将后台地理定位插件添加到您的应用程序中。在你的 app.component 中做这样的事情

const config: BackgroundGeolocationConfig = {
desiredAccuracy: 10,
stationaryRadius: 20,
distanceFilter: 30,
debug: true, // enable this hear sounds for background-geolocation life-cycle.
stopOnTerminate: false, // enable this to clear background location settings when the app terminates
};

this.bgLoc.stop();
完成上述操作后,这将自动请求后台位置权限,并允许蓝牙在 android 10 上工作。还要确保将粗定位权限添加到您的 androidmanifest.xml

关于android - ionic 电容器 BLE 插件扫描不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61180374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com