- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide, https://ios.cfw.guide/sideloading-apps/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>items</key> | |
| <array> | |
| <dict> | |
| <key>cell</key> | |
| <key>PSSwitchCell</key> | |
| <key>default</key> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <Foundation/Foundation.h> | |
| @interface NSObject (Private) | |
| - (id)safeValueForKey:(NSString *)key; | |
| @end | |
| @interface NSArray (BaseBoard) | |
| - (id)bs_mapNoNulls:(id (^)(id))arg1; | |
| - (id)bs_flatten; | |
| - (id)bs_filter:(BOOL (^)(id))arg1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Preferences/PSListController.h> | |
| @interface PSListController (JSON) | |
| - (NSMutableArray *)loadSpecifiersFromJSONName:(NSString *)name target:(PSListController *)target; | |
| - (NSMutableArray *)loadSpecifiersFromJSONName:(NSString *)name target:(PSListController *)target bundle:(NSBundle *)bundle; | |
| @end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| domain=my.domain.local | |
| domain-needed | |
| interface=ens1f0 | |
| bogus-priv | |
| listen-address=192.168.1.1 | |
| expand-hosts | |
| server=8.8.8.8 | |
| # DHCP IPv4 | |
| dhcp-range=ens1f0,192.168.1.100,192.168.1.200,24h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <Foundation/Foundation.h> | |
| #include <unistd.h> | |
| // Use for NSString literals or variables | |
| #define ROOT_PATH_NS(path)([[NSFileManager defaultManager] fileExistsAtPath:path] ? path : [@"/var/jb" stringByAppendingPathComponent:path]) | |
| // Use for C string literals | |
| #define ROOT_PATH_C(cPath) (access(cPath, F_OK) == 0) ? cPath : "/var/jb" cPath | |
| // Use for C string variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // How to use an OBWelcomeController in your project. | |
| // | |
| // Simalary (Chris) | |
| // Blurred Background by Ethan Whited | |
| // All the important interfaces | |
| @interface OBButtonTray : UIView | |
| @property (nonatomic,retain) UIVisualEffectView * effectView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // libblackjack.h | |
| // libblackjack | |
| // | |
| // Created by CoolStar on 2/24/20. | |
| // Copyright © 2020 CoolStar. All rights reserved. | |
| // | |
| #include "libhooker.h" |
NewerOlder
