I made a fully functional tweak with theos and I need to use an image file in it , the code for getting the image is correct (tested on Xcode) . but the image isn't included in the final DEB file .
and I have this makefile :
SDKVERSION=6.0
include theos/makefiles/common.mk
include theos/makefiles/tweak.mk
TWEAK_NAME = MyTweak
MyTweak_FRAMEWORKS = Foundation CoreGraphics UIKit
MyTweak_FILES = Tweak.xm image.png
include $(THEOS_MAKE_PATH)/tweak.mk
But when I try to compile I get :
No rule to make target `obj/image.png.o', needed by `obj/MyTweak.dylib'. Stop.
what can I do to include it ??
(Sorry for bad syntax , asking from iphone).