I created a new ConnectIQ Watch Face project in Eclipse and noticed that the view class was created with 'imports' whereas before it was created with 'using', see examples below. Is there any difference between 'import' vs 'using' in terms of memory & performance?
New style:
import Toybox.Application;
import Toybox.Graphics;
import Toybox.Lang;
import Toybox.System;
import Toybox.WatchUi;
class myWFView extends WatchUi.WatchFace {
Old style:
usingToybox.Application;
using Toybox.Graphics;
using Toybox.Lang;
using Toybox.System;
using Toybox.WatchUi;
class myWFView extends WatchUi.WatchFace {
Thanks!
/Fredrik