Hello. I am new to garmin IQ and I am coding on a macOS 10.12.1 and got Eclipse Neon up and running with the 2.2 build and have successfully created a new Garmin IQ project and executed it through the simulator! Yay!
I now want to load a custom font and using this youtube and website I can follow what needs to be done and have fnt and png files.
https://www.youtube.com/watch?v=PRQyA4BeqqE
http://kvazars.com/littera/
However when I go to create the folder 'fonts' and then the file fonts.xml i come across the error.
I can run the code successfully with this xml code:
<fonts>
<font id="customFont"></font></fonts>
I know it is missing filename but it runs. Once I change it to the following:
<fonts>
<font id="customFont" filename="customFont.fnt"></font></fonts>
I now get the following error:
BUILD: /Library/Java/JavaVirtualMachines/jdk1.8.0_112.jdk/Contents/Home/bin/java -Dfile.encoding=UTF-8 -Dapple.awt.UIElement=true -jar /Users/ben/Documents/connectiq-sdk-mac-2.2.1/bin/monkeybrains.jar -o /Users/ben/Documents/workspace/TimeSlideDos/bin/TimeSlideDos.prg -w -y /Users/ben/Documents/developer_key -z /Users/ben/Documents/workspace/TimeSlideDos/resources/drawables/drawables.xml:/Users/ben/Documents/workspace/TimeSlideDos/resources/fonts/fonts.xml:/Users/ben/Documents/workspace/TimeSlideDos/resources/layouts/layout.xml:/Users/ben/Documents/workspace/TimeSlideDos/resources/strings/strings.xml -m /Users/ben/Documents/workspace/TimeSlideDos/manifest.xml /Users/ben/Documents/workspace/TimeSlideDos/source/TimeSlideDosView.mc /Users/ben/Documents/workspace/TimeSlideDos/source/TimeSlideDosApp.mc
BUILD: ERROR: "charset=" is not a valid key/value pair.
BUILD: Complete
So without filename set I can run with warning that I am missing filename, with filename I get an odd charset error?
Any ideas is greatly appreciated!
Thank you,
Ben