[Solved] Access phone information [closed]

You can use the TelephonyManager class for IMEI , Phone Number and use the LocationManger class for location. Use this code: TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); // get IMEI String imei = tm.getDeviceId(); //get The Phone Number String phone = tm.getLine1Number(); 1 solved Access phone information [closed]

[Solved] integrate zxing in own android app [closed]

The instructions in the blog post are incorrect, in at least one area. The following paragraph from Step #3: The project will not currently build. We need to add the core.jar file (that we produced in the previous step) into our project. Right-click on ZXing project –> properties –> Java Build Path –> Add External … Read more