I get the following error message:
"Aborting launch due to failed build. "
When I change this code:
class Time {
static const MILLISECONDS_PER_MINUTE = 6000.0;
static const MILLISECONDS_PER_SECOND = 1000.0d;
static const SECONDS_PER_MINUTE = 60.0d;
static const SECONDS_PER_HOUR = 3600.0d;
. . .
}
For this:
const MILLISECONDS_PER_MINUTE = 6000.0;
const MILLISECONDS_PER_SECOND = 1000.0d;
const SECONDS_PER_MINUTE = 60.0d;
const SECONDS_PER_HOUR = 3600.0d;
class Time {
. . .
}
This smells to me like a bug with the SDK
Thanks
Jesus