A unique identifier for cell phone other than IMEI or IMSI?

后端 未结 2 1251
时光说笑
时光说笑 2020-12-21 15:27

I\'d like to have an unique identifier for a cell phone. Since there is not a particular way to find IMEI or IMSI on every mobile, I want to know if there are other ways to

2条回答
  •  北荒
    北荒 (楼主)
    2020-12-21 15:50

    You can use just time in millis if you don't need strong UID. Or you can get UUID implementation from J2SE and port it to J2ME. In this way UUID should be stored in RMS. One of the best way is to build server side and distribute app only via this service. When new user try to download app you can put into manifest and jad any UUID you want and use it in your app via MIDlet.getAppProperty( String uuidPropertyName );

提交回复
热议问题