Creates new binary application image. If application image already exists
then it will be removed and replaced by new one.
if (!Constants.MONET_ENABLED) {
throw new RuntimeException("Monet is disabled");
}
String binFile = suiteStorage.getMidletSuiteAppImagePath(suiteId);
String suiteJar = suiteStorage.getMidletSuiteJarPath(suiteId);
removeAppImage(binFile);
return MIDletAppImageGeneratorBase.generateAppImage(
suiteJar, binFile, 0);