Forum Moderators: not2easy
Soon, Facebook will allow you to be yourself, but under a different name.
The company is working on a stand-alone mobile application that allows users to interact inside of it without having to use their real names, according to two people briefed on Facebook’s plans, who spoke on the condition of anonymity because they were not authorized to discuss the project.
The app, which is expected to be released in the coming weeks, reveals a different, experimental take on Facebook’s long-established approach to identity. Report: Facebook To Allow Anonymous Posting [bits.blogs.nytimes.com]
without having to use their real names
import android.telephony.TelephonyManager;
import android.content.Context;
String imeistring = null;
String imsistring = null;
{
TelephonyManager telephonyManager;
telephonyManager =
( TelephonyManager )getSystemService( Context.TELEPHONY_SERVICE );
/*
* getDeviceId() function Returns the unique device ID.
* for example,the IMEI for GSM and the MEID or ESN for CDMA phones.
*/
imeistring = telephonyManager.getDeviceId();
/*
* getSubscriberId() function Returns the unique subscriber ID,
* for example, the IMSI for a GSM phone.
*/
imsistring = telephonyManager.getSubscriberId();
} <uses-permission
android:name="android.permission.READ_PHONE_STATE" >
</uses-permission>