I was playing around with barrels and 'outsourced' my math functions into barrel since I use them in different places. Everything works fine in the simulator (using eclipse) and I cal also export for a device with no issues. However, when I use the export wizard it throws an error I don't understand:
BUILD: ERROR: barrels.jungle:5: 'ExtendedMath' is not a valid barrel specified in the manifest file.
BUILD: ERROR: Errors were found during jungle file processing.
BUILD: com.garmin.monkeybrains.Packager$PackageException: [200] Errors were found during jungle file processing.
BUILD: at com.garmin.monkeybrains.Monkeybrains.packageApplication(Monkeybrains.java:815)
my manifest file has an entry
<iq:barrels>
<iq:depends name="ExtendedMath" version="0.0.1"/>
</iq:barrels>
and the barrels.jungle file looks like
# Do not hand edit this file. To make changes right click
# on the project and select "Configure Monkey Barrels".
ExtendedMath = "deployFenixHR\ExtendedMath-0.0.1.barrel"
base.ExtendedMath.annotations = Differential
base.barrelPath = $(base.barrelPath);$(ExtendedMath)
Can anyone give me a hint what I might do wrong here?
Thanks