I could not find in the reference manual a method to access:
- proximity sensor
- magentometer
- gyroscope
I only saw a reference entry for Accelerometer...
Also I did not see any information on how to use SQLlite , I know both android and ios support sqlite as the default method of storing data
Comments
Dislikes: MikeHart
It can be done on iOS through a plugin - I've been experimenting with a Core Data plugin, and have created SQLite databases and added data. It's not in a releasable format yet. I expect interfacing to an existing SQLite database would be much easier, if you have experience with SQL and C.
You can also access to magnetometer (compass) through the class Geolocation. The only sensor that isn't implemented is proximity sensor.
@Caroline totally I agree
YEah I really miss SQLite, that's my defacto method of storing game states and other info.. SQLite IS a standard on all IOS and can be compiled into Android. and is supported by Corona http://developer.anscamobile.com/reference/database and Mosync
Likes: atilim, igservices