tags:

views:

17

answers:

1

Hi how can get phone name , model , firmware versioan in application ? thanks

+1  A: 

Best bet is System.getProperty("microedition.platform"). That provides all the information you need on some handsets such as Nokias or SonyEricssons, but on some handsets it just returns "J2ME".

An alternative could be to make an HTTP request to a server somewhere, and have the server check the user-agent for you.

funkybro