[Solved] How to make mobile apps for different OS [closed]

To make apps (mobile apps, I think you mean) for different OS’s(I think you mean the different OS’s on each phone),(assumption: that you’re coding it from scratch) you learn a programming language first, then proceed to learn how to make apps for a particular OS. Typically, you purchase a book (look online for good recommendations) … Read more

[Solved] @ validation for email in BlackBerry

Use EmailAddressEditField.. here is the way EmailAddressEditField email=new EmailAddressEditField(“Email Address: “, “”); String address =email.getText(); int at = address.indexOf(“@”); int len = address.length(); String host = address.substring(at + 1, len); int dot = host.lastIndexOf(‘.’); len = host.length(); if (at <= 0 || at > len – 6 && dot < 0 || dot >= len … Read more

[Solved] Blackberry Version checking

There’s a better approach than you described. Use preprocessor and alx-task to build different application versions for different OS version. Then you will have one alx + set of folders with cod files, where every folder has cod files for particular platform version. Alx file will contain directives to install cod files from the suitable … Read more