Well, I found a result that should be in your WatchKt application not on your extension. And with the addition of an app that drains the clock, it no longer searches for a 1x image, since they should all be 2x. 
import WatchKit import Foundation class InterfaceController: WKInterfaceController { @IBOutlet var cirlceImage: WKInterfaceImage! override func awakeWithContext(context: AnyObject?) { super.awakeWithContext(context) cirlceImage.setImageNamed("circle94") } override func willActivate() { super.willActivate() } override func didDeactivate() { super.didDeactivate() } }
source share