views:

16

answers:

1

Does MIDP 2.0 say that this phone has at least GPRS capability?

I need to come up with a list of phones which has MIDP 2.0, and GPRS capability.

+1  A: 

No.

MIDP gives a Java based interface, architecture, and library, for high level programming of the phone. It does not say anything about the physical capabilities of the underlying system. Technically, the device you're programming against is not even guaranteed to be a phone - any device could decide to implement the MIDP, as long as it has any kind of two-way, wireless, possibly intermittent, network connection.

You can check the full details of the spec here if you want:

https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_JCP-Site/en_US/-/USD/ViewFilteredProducts-SimpleBundleDownload

The suggested hardware requirements for devices are on pages 7-8. Note the use of the word "SHOULD" - devices might not actually have all or even any of these properties.

blueberryfields