Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cordova detect running on emulator or real device

Is it possible for our cordova app to detect whether it is running on emulator or real device for both Android and iOS?

like image 914
user1995781 Avatar asked Nov 29 '25 05:11

user1995781


1 Answers

As stated in a comment against the question, one answer is to use the cordova-device-plugin:

var isSim = device.isVirtual;
like image 92
Colin Avatar answered Dec 01 '25 01:12

Colin