diff -ur lordscotland-mterminal-283695be6357/MTAppDelegate.h lordscotland-mterminal-283695be6357+iPhone/MTAppDelegate.h --- lordscotland-mterminal-283695be6357/MTAppDelegate.h 2017-10-01 05:45:08.000000000 -1000 +++ lordscotland-mterminal-283695be6357+iPhone/MTAppDelegate.h 2018-11-11 18:03:27.000000000 -1000 @@ -1,3 +1,5 @@ +#import + @class MTController; @interface MTAppDelegate : NSObject { diff -ur lordscotland-mterminal-283695be6357/MTKBAvoiding.h lordscotland-mterminal-283695be6357+iPhone/MTKBAvoiding.h --- lordscotland-mterminal-283695be6357/MTKBAvoiding.h 2017-10-01 05:45:08.000000000 -1000 +++ lordscotland-mterminal-283695be6357+iPhone/MTKBAvoiding.h 2018-11-11 18:05:53.000000000 -1000 @@ -1,3 +1,5 @@ +#import + @interface MTKBAvoiding : UIViewController { CGFloat kbHeight; BOOL deferAdjust; diff -ur lordscotland-mterminal-283695be6357/MTRowView.h lordscotland-mterminal-283695be6357+iPhone/MTRowView.h --- lordscotland-mterminal-283695be6357/MTRowView.h 2017-10-01 05:45:08.000000000 -1000 +++ lordscotland-mterminal-283695be6357+iPhone/MTRowView.h 2018-11-11 18:06:13.000000000 -1000 @@ -1,4 +1,5 @@ #import +#import #define kMTBackgroundColorAttributeName CFSTR("MTBackgroundColor") #define kMTStrikethroughColorAttributeName CFSTR("MTStrikethroughColor") diff -ur lordscotland-mterminal-283695be6357/Makefile lordscotland-mterminal-283695be6357+iPhone/Makefile --- lordscotland-mterminal-283695be6357/Makefile 2017-10-01 05:45:08.000000000 -1000 +++ lordscotland-mterminal-283695be6357+iPhone/Makefile 2018-11-11 18:21:23.000000000 -1000 @@ -1,10 +1,11 @@ ARCHS = armv7 arm64 -TARGET = iphone:latest:4.0 +TARGET = iphone:10.0:4.0 include theos/makefiles/common.mk APPLICATION_NAME = MTerminal MTerminal_FILES = $(wildcard *.m) MTerminal_FRAMEWORKS = AudioToolbox CoreGraphics CoreText UIKit +MTerminal_CODESIGN_FLAGS = -Sentitlement.xml include $(THEOS_MAKE_PATH)/application.mk Only in lordscotland-mterminal-283695be6357+iPhone: entitlement.xml diff -ur lordscotland-mterminal-283695be6357/main.m lordscotland-mterminal-283695be6357+iPhone/main.m --- lordscotland-mterminal-283695be6357/main.m 2017-10-01 05:45:08.000000000 -1000 +++ lordscotland-mterminal-283695be6357+iPhone/main.m 2018-11-11 18:06:48.000000000 -1000 @@ -1,3 +1,5 @@ +#import + int main(int argc,char** argv) {@autoreleasepool { return UIApplicationMain(argc,argv,nil,@"MTAppDelegate"); }} Only in lordscotland-mterminal-283695be6357+iPhone: theos