repro:
git clone https://github.com/KritantaDev/theosbug.git && cd theosbug && make package; make logos
make logos will manually invoke logos.pl and create a Tweak.m file with the output of logos.pl Tweak.x.
Line 24 of Tweak.m output references the CGRect struct, however imports aren't done till Line 27. Both of these imports are the first thing in the Tweak.x file.
A newline fixes this.
Prefix.pch seems to have concealed this issue before iOS 14.
repro:
git clone https://github.com/KritantaDev/theosbug.git && cd theosbug && make package; make logosmake logoswill manually invoke logos.pl and create aTweak.mfile with the output oflogos.pl Tweak.x.Line 24 of
Tweak.moutput references the CGRect struct, however imports aren't done till Line 27. Both of these imports are the first thing in the Tweak.x file.A newline fixes this.
Prefix.pch seems to have concealed this issue before iOS 14.