After some time spent investingating WinDev Mobile I found some limitations that make programming for Android enough difficult and sad:
So RAD pattern is not available for use under Android...
- MyMappedFile and MyMappedUniqueKey do not supported by Android (crash)
- FileToMemory and MemoryToFile do not work under Android (no crash, no affect)
- Class and variant indirection do not work under Android (crash).
- Deep assignment "<=" does not supported (crash, required the same class on both sides)
- Avoid use of abstract class properties (crash when property is used in base class). Use abstract methods.
- Abstract methods must have return types (if they are functions but not procedures)
So RAD pattern is not available for use under Android...