├── .gitignore ├── ApplePayfixforiOS14.plist ├── Extensions ├── UIView+FindUIViewController.h └── UIView+FindUIViewController.m ├── Headers └── PKPGSVSectionHeaderView.h ├── LICENSE.md ├── Makefile ├── README.md ├── Tweak.m ├── UI └── FAPSettingsViewController │ ├── FAPSettingsViewController.h │ └── FAPSettingsViewController.m ├── control ├── icon.png └── prefs ├── FAPRootListController.h ├── FAPRootListController.m ├── Makefile ├── Resources ├── Info.plist ├── Root.plist └── icon.png └── layout └── Library └── PreferenceLoader └── Preferences └── FAPPrefs.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/.gitignore -------------------------------------------------------------------------------- /ApplePayfixforiOS14.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/ApplePayfixforiOS14.plist -------------------------------------------------------------------------------- /Extensions/UIView+FindUIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/Extensions/UIView+FindUIViewController.h -------------------------------------------------------------------------------- /Extensions/UIView+FindUIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/Extensions/UIView+FindUIViewController.m -------------------------------------------------------------------------------- /Headers/PKPGSVSectionHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/Headers/PKPGSVSectionHeaderView.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/Tweak.m -------------------------------------------------------------------------------- /UI/FAPSettingsViewController/FAPSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/UI/FAPSettingsViewController/FAPSettingsViewController.h -------------------------------------------------------------------------------- /UI/FAPSettingsViewController/FAPSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/UI/FAPSettingsViewController/FAPSettingsViewController.m -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/control -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/icon.png -------------------------------------------------------------------------------- /prefs/FAPRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/prefs/FAPRootListController.h -------------------------------------------------------------------------------- /prefs/FAPRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/prefs/FAPRootListController.m -------------------------------------------------------------------------------- /prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/prefs/Makefile -------------------------------------------------------------------------------- /prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/prefs/Resources/Info.plist -------------------------------------------------------------------------------- /prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/prefs/Resources/Root.plist -------------------------------------------------------------------------------- /prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/prefs/Resources/icon.png -------------------------------------------------------------------------------- /prefs/layout/Library/PreferenceLoader/Preferences/FAPPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExTBH/iOS14-fix-apple-pay/HEAD/prefs/layout/Library/PreferenceLoader/Preferences/FAPPrefs.plist --------------------------------------------------------------------------------