Just installed 3.2 (see https://forums.garmin.com/developer/connect-iq/b/news-announcements/posts/connect-iq-3-2-now-available),
and in looking at the change log in the SDK README file, a bunch of new features!
Time to start trying stuff!
Just installed 3.2 (see https://forums.garmin.com/developer/connect-iq/b/news-announcements/posts/connect-iq-3-2-now-available),
and in looking at the change log in the SDK README file, a bunch of new features!
Time to start trying stuff!
wow!! yesterday i also check the guide and found anti-aliasing code.
By default, anti-aliasing of primitives like polygons and lines are disabled, but it can be enabled by calling setAntiAliasing(true)
. This method is not available in pre-Connect IQ 3.2 products so if your app runs with the API level set below 3.2 make sure to guard it with a has
check.
function draw(dc) {
if(dc has :setAntiAlias) {
dc.setAntiAlias(true);
}
dc.drawPolygon()
}
ERA is also not working for me on Mac
We'll take a look at this. Not sure it matters, but which version of macOS are you using?
EXE and JAR not signed.
This is something we're working to get remedied in a future update. Apologies for the inconvenience.
Okay, why does the SDK manager thinks that I agree to install to C:\Users\<username>\AppData\Roaming\Garmin\ConnectIQ\ ?
I've already created a ticket about this. Our intent was to allow the SDK Manager to manage the SDKs and devices so you don't have to, but I understand that some folks want to keep their C: drive pristine or may have a small system drive with additional, large drives that are used as working storage.
Short term, you can move SDKs to a location of your choosing and manually set the path to it in the Eclipse preferences.
i did test, it works for me,
don't forget to run 3.2.1 on the SIM and as i wrote it it does not run if put in onLayout, but does work in onUpdate
Same code. One running Connect IQ 3.2... Guess which one
Just added this at the top of my onUpdate(dc) method:
if(dc has :setAntiAlias) { dc.setAntiAlias(true); }
wow!! that test is with simulator??