Homey.alert

Hi,

I have this code in my app:

			Homey.set('settings', i2sqlSettings, function(err) {
				if ( err ) {
					Homey.alert( err );
				} else {
					Homey.alert( "Settings saved", "info" );
				}
			});

When I run the app on the Homey Developer page I get a popup from this code:

image

When I run the app on my (android) phone I don’t get the popup. Why is that, and is there a way to solve that?

TIA