我需要从Android设备获取IMEI,我正在使用IONIC应用程序。
我正在使用这个插件 -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号码作为空值。
您可以按照文档进行操作: 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
}