Hello
I don't understand why (SDK 2.1.3) in Eclipse > preferences > Connect IQ > Compiler there is no input "generation key" and generate button ?
What i make wrong ?
Thanks !
Thank you ! it was an update problem... :/
I now check thread for the "too many arguments Error in onStart" !
D
// onStart() is called on application start up
function onStart(state) {
}
// onStop() is called when your application is exiting
function onStop(state) {
}
The onStart and onStop need to have a state parameter added to the function in order for this to be resolved. There are LOTS of threads about it but here is a quick look:
// onStart() is called on application start up
function onStart(state) {
}
// onStop() is called when your application is exiting
function onStop(state) {
}
Notice onStart() is now onStart(state), this should get you back on track. It might be worthwhile to make a quick pass through all your projects adding the needed elements just so it doesn't bite again.