Just ran the SDK manager and downloaded the newest SDK and the Fenix 7 device. But where is it stored on my Mac? The folder with the SDK manager doesn't have anything...
Just ran the SDK manager and downloaded the newest SDK and the Fenix 7 device. But where is it stored on my Mac? The folder with the SDK manager doesn't have anything...
In Terminal, type:
cd ~/"Library/Application Support/Garmin/ConnectIQ"
Or in Finder, open the Go menu, select Go To Folder and type:
~/Library/Application Support/Garmin/ConnectIQ
In that folder, you'll see the following folders:Fonts
Devices
Sdks
There's also a text file called current-sdk.cfg
which contains the full path to the currently selected SDK.
So to change to the current sdk's folder, you could type the following command in Terminal:
cd "$(cat ~/"Library/Application Support/Garmin/ConnectIQ/current-sdk.cfg")"
I use the following logic so I can set the stuff in my path and switch sdk's easily:
Thanks!