Khalid Imam
Khalid Imam

Reputation: 17

How do I get device related info programmatically like model number or IMSI , MSISDN while developing codenameone app

I am developing a codename app and need to capture device model ,imsi and msisdn information so that i can send data depending on this information.

Upvotes: 0

Views: 230

Answers (1)

Chen
Chen

Reputation: 3760

Try Display.getInstance().getUdid() and Display.getInstance().getMsisdn() you can also use Display.getInstance().getProperty(...) for more properties.

Upvotes: 2

Related Questions