Upgrading plugin project from CC2019 to CC2020 SDK, tool icons don't appear
I upgraded my AI SDK to the 2020 version, and fixed the assorted compile errrors that occurred. I am using XCode 10.3, and Illustrator 24.0.1.
I converted my icons to SVGs. I added the create_pipl script to the MacOS build phase. I also removed the old PNGs from the .r file, created the new IDToFile.txt file, and added the post build steps to copy the .pipl, IDToFile.txt, and various SVGs into the correct places in the Resource directory of the build output, using the MultiArrowTool project as my guide.
I also added the line:
toolData.iconType = ai::IconType::kSVG;
after my line:
toolData.normalIconResID = iconName[i];
mirroring what was done in the MultiArrowTool source code.
At this point, my tools appear in the toolbar, with their names, but their icons don't appear next to them. I don't see any errors that appear at all relevent in the debug output in XCode. I'm at a bit of a loss on what I might be missing.