Hi Experts,
i am using jdeveloper version 11.1.2.4.0
My question is how to get IMEI no and mobile no in ADF mobile.
i have also read this
How to get imei number and mac address of mobile device on adf mobile
as dvohra said used TelephonyManager
TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
telephonyManager.getDeviceId();
but i don't understand where i use "TelephonyManager "
when i have write this code on my managed bean
TelephonyManager class not find.
Any Solution?