Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ExTBH committed Nov 12, 2022
0 parents commit 0e457ab
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.theos/
packages/
.DS_Store
1 change: 1 addition & 0 deletions ApplePayfixforiOS14.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ Filter = { Bundles = ( "com.apple.Passbook" ); }; }
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
TARGET := iphone:clang:latest:14.0
INSTALL_TARGET_PROCESSES = Passbook


include $(THEOS)/makefiles/common.mk

TWEAK_NAME = ApplePayfixforiOS14

ApplePayfixforiOS14_FILES = Tweak.x
ApplePayfixforiOS14_CFLAGS = -fobjc-arc

include $(THEOS_MAKE_PATH)/tweak.mk
12 changes: 12 additions & 0 deletions Tweak.x
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#import <UIKit/UIKit.h>

%hook PKPaymentDevice
+(id)clientInfoHTTPHeader{
NSString *os_version = [[UIDevice currentDevice] systemVersion];
NSString *org = %orig;
// figure a way to find the OS Build number to replace it
org = [org stringByReplacingOccurrencesOfString:os_version withString:@"15.3"];
return org;
}

%end
10 changes: 10 additions & 0 deletions control
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Package: dev.extbh.fixpay14
Name: Apple Pay iOS 14
Version: 0.0.1
Architecture: iphoneos-arm
Description: Fuck Apple for stopping apple pay on iOS 14, Icon https://www.iconfinder.com/icons/4923044/apple_pay_icon
Maintainer: ExTBH <[email protected]>
Author: ExTBH <[email protected]>
Section: Tweaks
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 14.0), firmware (<= 14.8)
Icon:
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0e457ab

Please sign in to comment.