Anushka Agarwal
Anushka Agarwal

Reputation: 127

Name of emulator I'm using?

I'm developing a project in Android. I know every emulator has some specific name like Gameboid,Frodo, Gearoid etc. How can I get to know the name of Emulator on which i am working??

Upvotes: 0

Views: 104

Answers (2)

Scrooge
Scrooge

Reputation: 86

This should work:

emulator -avd System -version

I recommend to read more from here!

Upvotes: 1

EvZ
EvZ

Reputation: 12179

In Eclipse :

Open Android Virtual Device Manager and check the Platform of your AVD(Android virtual device).

Programmatically :

String sdkVersion = android.os.Build.VERSION.SDK;

Upvotes: 0

Related Questions