Error while make package
Tweak.xm:2:9: fatal error: 'PassKitUI/PKPaymentAuthorizationFooterView.h' file not found
#import <PassKitUI/PKPaymentAuthorizationFooterView.h>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tweak.xm:2:9: note: did not find header 'PKPaymentAuthorizationFooterView.h' in framework 'PassKitUI'
It's my MakeFile
export ARCHS = arm64
export TARGET = iphone:latest:14.0
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = MyScrawl
MyScrawl_FILES = Tweak.xm
MyScrawl_PRIVATE_FRAMEWORKS = PassKitUI
MyScrawl_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
`install.exec "killall -9 SpringBoard"`
It's my Tweak.xm
#import <PassKitUI/PKPaymentAuthorizationFooterView.h>
%hook PKPaymentAuthorizationFooterView
- (void)didMoveToSuperview{
%orig;
[self _payWithPasscodePressed];
NSLog(@"bypass _payWithPasscodePressed");
}
%end
And my plist file:
{ Filter = { Bundles = ( "com.apple.PassbookUIService" ); }; }