任何人都可以向我解釋如何從Phonegap獲取設備的IMEI號碼嗎? 我在我的應用程序中使用IMEI插件,它沒有顯示任何內容。如何在imeiplugin的phonegap應用程序中獲取imei號碼
要安裝,我曾經嘗試都:
phonegap plugin add https://github.com/zho/phonegap-imeiplugin.git
- 或 -
cordova plugin add imeiplugin
實例應用:
window.plugins.imeiplugin.getImei(callback);
function callback(imei) {
console.log("My Android IMEI :" + imei);
我所要的輸出顯示當用戶打開應用程序,但它沒有顯示。
每一件事情是在聯繫的明確正確....所以你面臨的問題是什麼 –