cordova ---- 獲取手機設備信息 IMEI

我們的項目是ionic。。。

此功能是利用Phonegap的Device 提供有:

device.model     :返回設備的模型或產品的名稱

device.cordova  :返回cordova的版本

device.uuid        :返回手機 uuid

device.version   :返回系統版本  

device.platform  :返回手機的平臺信息  (android/ios 等等)

唯獨沒有Imei 的獲取方法

本節在phonegap提供的插件上 增加一個imei的獲取

Device調用方法參考http://blog.csdn.net/aaawqqq/article/details/21169587(點擊打開鏈接

1.在項目中添加插件:

cordova plugin add cordova-plugin-device

2.在項目的文件裏的plugins文件裏找到添加的plugin,然後在js文件和java類裏面修改內容


第一是在www下的device.js中修改一下代碼:

/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
*/

var argscheck = require('cordova/argscheck'),
    channel = require('cordova/channel'),
    utils = require('cordova/utils'),
    exec = require('cordova/exec'),
    cordova = require('cordova');

channel.createSticky('onCordovaInfoReady');
// Tell cordova channel to wait on the CordovaInfoReady event
channel.waitForInitialization('onCordovaInfoReady');

/**
 * This represents the mobile device, and provides properties for inspecting the model, version, UUID of the
 * phone, etc.
 * @constructor
 */
function Device() {
    this.available = false;
    this.platform = null;
    this.version = null;
    this.uuid = null;
    this.cordova = null;
    this.model = null;
    this.manufacturer = null;
    this.isVirtual = null;
    this.serial = null;
    this.imei = null;//添加imei
    var me = this;

    channel.onCordovaReady.subscribe(function() {
        me.getInfo(function(info) {
            //ignoring info.cordova returning from native, we should use value from cordova.version defined in cordova.js
            //TODO: CB-5105 native implementations should not return info.cordova
            var buildLabel = cordova.version;
            me.available = true;
            me.platform = info.platform;
            me.version = info.version;
            me.uuid = info.uuid;
            me.cordova = buildLabel;
            me.model = info.model;
            me.isVirtual = info.isVirtual;
            me.manufacturer = info.manufacturer || 'unknown';
            me.serial = info.serial || 'unknown';
	    me.imei = info.imei;//添加imei
            channel.onCordovaInfoReady.fire();
        },function(e) {
            me.available = false;
            utils.alert("[ERROR] Error initializing Cordova: " + e);
        });
    });
}

/**
 * Get device info
 *
 * @param {Function} successCallback The function to call when the heading data is available
 * @param {Function} errorCallback The function to call when there is an error getting the heading data. (OPTIONAL)
 */
Device.prototype.getInfo = function(successCallback, errorCallback) {
    argscheck.checkArgs('fF', 'Device.getInfo', arguments);
    exec(successCallback, errorCallback, "Device", "getDeviceInfo", []);
};

module.exports = new Device();

第二是在Device.java類裏,修改
/*    
       Licensed to the Apache Software Foundation (ASF) under one    
       or more contributor license agreements.  See the NOTICE file    
       distributed with this work for additional information    
       regarding copyright ownership.  The ASF licenses this file    
       to you under the Apache License, Version 2.0 (the    
       "License"); you may not use this file except in compliance    
       with the License.  You may obtain a copy of the License at    
    
         http://www.apache.org/licenses/LICENSE-2.0    
    
       Unless required by applicable law or agreed to in writing,    
       software distributed under the License is distributed on an    
       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY    
       KIND, either express or implied.  See the License for the    
       specific language governing permissions and limitations    
       under the License.    
*/    
package org.apache.cordova.device;    
    
import java.util.TimeZone;    
    
import org.apache.cordova.CordovaWebView;    
import org.apache.cordova.CallbackContext;    
import org.apache.cordova.CordovaInterface;    
import org.apache.cordova.CordovaPlugin;    
import org.apache.cordova.CordovaWebView;    
import org.apache.cordova.CordovaInterface;    
import org.json.JSONArray;    
import org.json.JSONException;    
import org.json.JSONObject;    
    
import android.content.Context;    
import android.provider.Settings;    
import android.telephony.TelephonyManager;    
import android.util.Log;    
    
public class Device extends CordovaPlugin {    
    public static final String TAG = "Device";    
    
    public static String cordovaVersion = "dev";           // Cordova version    
    public static String platform;                          // Device OS    
    public static String uuid;                              // Device UUID    
    
    private static final String ANDROID_PLATFORM = "Android";    
    private static final String AMAZON_PLATFORM = "amazon-fireos";    
    private static final String AMAZON_DEVICE = "Amazon";    
    
    /**    
     * Constructor.    
     */    
    public Device() {    
    }    
    
    /**    
     * Sets the context of the Command. This can then be used to do things like    
     * get file paths associated with the Activity.    
     *    
     * @param cordova The context of the main Activity.    
     * @param webView The CordovaWebView Cordova is running in.    
     */    
    public void initialize(CordovaInterface cordova, CordovaWebView webView) {    
        super.initialize(cordova, webView);    
        Device.uuid = getUuid();    
    }    
    
    /**    
     * Executes the request and returns PluginResult.    
     *    
     * @param action            The action to execute.    
     * @param args              JSONArry of arguments for the plugin.    
     * @param callbackContext   The callback id used when calling back into JavaScript.    
     * @return                  True if the action was valid, false if not.    
     */    
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {    
        if ("getDeviceInfo".equals(action)) {    
            JSONObject r = new JSONObject();    
            r.put("uuid", Device.uuid);    
            r.put("version", this.getOSVersion());    
            r.put("platform", this.getPlatform());    
            r.put("cordova", Device.cordovaVersion);    
            r.put("model", this.getModel());    
            r.put("manufacturer", this.getManufacturer());    
            r.put("isVirtual", this.isVirtual());    
            r.put("serial", this.getSerialNumber());    
            r.put("imei", this.imei());    
            callbackContext.success(r);    
        }    
        else {    
            return false;    
        }    
        return true;    
    }    
    
    //--------------------------------------------------------------------------    
    // LOCAL METHODS    
    //--------------------------------------------------------------------------    
        
    //imei    
    private String imei() {    
//      String  Imei = ((TelephonyManager) cordova.getActivity().getSystemService(cordova.getActivity().TELEPHONY_SERVICE))    
//              .getDeviceId();    
//      return Imei;    
            
           TelephonyManager systemService = (TelephonyManager)cordova.getActivity().getSystemService(Context.TELEPHONY_SERVICE);    
           String deviceId = systemService.getDeviceId();    
           Log.i("123", deviceId);    
               
        return systemService.getDeviceId();    
    }    
    
    /**    
     * Get the OS name.    
     *    
     * @return    
     */    
    public String getPlatform() {    
        String platform;    
        if (isAmazonDevice()) {    
            platform = AMAZON_PLATFORM;    
        } else {    
            platform = ANDROID_PLATFORM;    
        }    
        return platform;    
    }    
    
    /**    
     * Get the device's Universally Unique Identifier (UUID).    
     *    
     * @return    
     */    
    public String getUuid() {    
        String uuid = Settings.Secure.getString(this.cordova.getActivity().getContentResolver(), android.provider.Settings.Secure.ANDROID_ID);    
        return uuid;    
    }    
    
    /**    
     * Get the Cordova version.    
     *    
     * @return    
     */    
    public String getCordovaVersion() {    
        return Device.cordovaVersion;    
    }    
    
    public String getModel() {    
        String model = android.os.Build.MODEL;    
        return model;    
    }    
    
    public String getProductName() {    
        String productname = android.os.Build.PRODUCT;    
        return productname;    
    }    
    
    public String getManufacturer() {    
        String manufacturer = android.os.Build.MANUFACTURER;    
        return manufacturer;    
    }    
    
    public String getSerialNumber() {    
        String serial = android.os.Build.SERIAL;    
        return serial;    
    }    
    
    /**    
     * Get the OS version.    
     *    
     * @return    
     */    
    public String getOSVersion() {    
        String osversion = android.os.Build.VERSION.RELEASE;    
        return osversion;    
    }    
    
    public String getSDKVersion() {    
        @SuppressWarnings("deprecation")    
        String sdkversion = android.os.Build.VERSION.SDK;    
        return sdkversion;    
    }    
    
    public String getTimeZoneID() {    
        TimeZone tz = TimeZone.getDefault();    
        return (tz.getID());    
    }    
    
    /**    
     * Function to check if the device is manufactured by Amazon    
     *    
     * @return    
     */    
    public boolean isAmazonDevice() {    
        if (android.os.Build.MANUFACTURER.equals(AMAZON_DEVICE)) {    
            return true;    
        }    
        return false;    
    }    
    
    public boolean isVirtual() {    
    return android.os.Build.FINGERPRINT.contains("generic") ||    
        android.os.Build.PRODUCT.contains("sdk");    
    }    
    
}


第三在platforms文件夾下的AndroidManifest.xml文件里加允許獲取imei的權限
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
第四是在你需要的獲取手機信息的js代碼中,加上一下代碼:
function onDeviceReady() {
// Wait for device API libraries to load    
    //var element = document.getElementById('deviceProperties');        
    // alert(element); 
    // element.innerHTML = 
    // 'Device Model: '    + device.model    + '<br />' +  
    // 'Device Cordova: '  + device.cordova  + '<br />' +    
    // 'Device Platform: ' + device.platform + '<br />' +		    
    // 'Device UUID: '     + device.uuid     + '<br />' +		    
    // 'Device Version: '  + device.version  + '<br />';
  alert( device.model +"----"+device.cordova +"------"+ device.uuid +"-----"+device.version+"----"+device.platform );
}
調用此函數
第五是從新打包你的項目,在手機上運行


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章