Umesh

Untitled Document

Monday, 25 February 2013

Check whether your app is running on Android Emulator or Android Mobile


Hello guys, following is simple code which check's whether your android app is running on emulator or Mobile device

           
  if("google_sdk".equals(Build.MODEL))
{
// Emulator
}
else
{
//Mobile
}

No comments:

Post a Comment