我需要从Android设备上获取IMEI,我在一个离子应用程序中工作。
我正在使用这个插件- ionic cordova plugin add cordova-plugin-uid
参考链接- https://ionicframework.com/docs/native/uid/
这是我的代码片段-
async getIMEI() {
const {hasPermission} = await this.androidPermissions.checkPermission(
this.androidPermissions.PERMISSION.READ_PHONE_STATE
);
console.log("hasPermission : " + hasPermission);
if (!hasPermission) {
const result = await this.androidPermissions.requestPermission(
this.androidPermissions.PERMISSION.READ_PHONE_STATE
);
if (!result.hasPermission) {
throw new Error('Permissions required');
}
// ok, a user gave us permission, we can get him identifiers after restart app
return 0 ;
}
return this.uid.IMEI;
}我在构造函数中调用getIMEI() -
constructor(public navCtrl: NavController, public navParams: NavParams, public alertCtrl: AlertController,
public apiProvider: ApiProvider, public storage: Storage, public platform: Platform, public fcm: FCM,
public uid: Uid, public androidPermissions: AndroidPermissions) {
platform.ready().then(() => {
if (this.platform.is('android')) {
console.log("running on Android device!");
this.deviceType = 'ANDROID';
this.getIMEI();
}
if (this.platform.is('ios')) {
console.log("running on iOS device!");
this.deviceType = 'IPHONE';
}
});
}我总是将IMEI编号作为空值。
发布于 2019-12-27 06:16:44
您可以跟踪docs:https://ionicframework.com/docs/native/uid
首先,将插件添加到应用程序中:
ionic cordova plugin add cordova-plugin-uid
npm install @ionic-native/uid 在ts文件中,您希望获得IMEI:
import { Uid } from '@ionic-native/uid/ngx';
import { AndroidPermissions } from '@ionic-native/android-permissions/ngx';
constructor(private uid: Uid, private androidPermissions: AndroidPermissions) { }
async getImei() {
const { hasPermission } = await this.androidPermissions.checkPermission(
this.androidPermissions.PERMISSION.READ_PHONE_STATE
);
if (!hasPermission) {
const result = await this.androidPermissions.requestPermission(
this.androidPermissions.PERMISSION.READ_PHONE_STATE
);
if (!result.hasPermission) {
throw new Error('Permissions required');
}
// ok, a user gave us permission, we can get him identifiers after restart app
return;
}
return this.uid.IMEI
}https://stackoverflow.com/questions/50211792
复制相似问题