Jump to content

The Epic Gamer

Senior Member
  • Posts

    186
  • Joined

  • Last visited

Posts posted by The Epic Gamer

  1. Hello, I am experiencing problems with Theos, I have the iOS 10.2 SDK

    Here is the error:                                                                                                                                                

    iPad:/var/mobile/liquidtextpdf root# make package                                                                                            
    > Making all for tweak LiquidTextPDF…                                                                                                        
    make[2]: Nothing to be done for 'internal-library-compile'.                                                                                  
    > Making all in LiquidTextPDFSettings…                                                                                                       
    > Making all for bundle LiquidTextPDF…                                                                                                       
    ==> Copying resource directories into the bundle wrapper…                                                                                    
    ==> Linking bundle LiquidTextPDF (armv7)…                                                                                                    
    ld: framework not found Preferences                                                                                                          
    clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)                                                          
    make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/armv7/LiquidTextPDF.bundle/LiquidTextPDF] Error 1                                                                                                                                           
    ==> Linking bundle LiquidTextPDF (arm64)…                                                                                                    
    ld: framework not found Preferences                                                                                                          
    clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)                                                          
    make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/arm64/LiquidTextPDF.bundle/LiquidTextPDF] Error 1                                                                                                                                           
    make[3]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/arm64/LiquidTextPDF.bundle/LiquidTextPDF] Error 2                                                                                                                                           
    make[3]: *** Waiting for unfinished jobs....                                                                                                 
    make[3]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/armv7/LiquidTextPDF.bundle/LiquidTextPDF] Error 2                                                                                                                                           
    make[2]: *** [/var/theos/makefiles/instance/bundle.mk:26: internal-bundle-all_] Error 2                                                      
    make[1]: *** [/var/theos/makefiles/master/rules.mk:123: LiquidTextPDF.all.bundle.variables] Error 2                                          
    make: *** [/var/theos/makefiles/master/aggregate.mk:12: internal-all] Error 2                                                                

     

     

    Tweak.xm:

    @import Foundation;
    @import UIKit;
    #import <substrate.h>
    #import "vm_writeData.h"
    
    // To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-offsets/
    // To Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject/
    
    #define PLIST_PATH @"/var/mobile/Library/Preferences/com.majdawwad.liquidtextpdf.plist"
    
    inline bool GetPrefBool(NSString *key) {
    		return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
    }
    
    
    // Add your MS/Flex/MSHook Code here. Examples can be found on iOSGods.
    
    
    %ctor {
    
    	// Code Injection example
        if(GetPrefBool(@"key1")) {
          vm_writeData(0x123456, 0x123456); // 
        }
    
        if(GetPrefBool(@"key2")) {
          vm_writeData(0x10963C, 0xC0F8AC70); // 
        }
    
        if(GetPrefBool(@"key3")) {
          vm_writeData(0x1806B8, 0x381C); // ARMv7Offsets
          vm_writeData(0x2FA51C, 0x381C); // 
          vm_writeData(0x1001D98E0, 0x1F2003D5); // ARM64Offsets
          vm_writeData(0x10038DD0C, 0x1F2003D5); // 
        }
    
    }
    
    %hook LTuserinfo
    -(bool) hasProUpgrade {
    if(GetPrefBool(@"key1")) {
    return TRUE;
    }
    return %orig;
    }
    %end
    
    %hook LTuserinfo
    -(void) setHasProUpgrade:(bool)arg1 {
    if(GetPrefBool(@"key1")) {
    arg1 = TRUE;
    }
    %orig(arg1);
    }
    %end
    
    %hook LTuserinfo
    -(bool) inkStartedEnabled {
    if(GetPrefBool(@"key1")) {
    return TRUE;
    }
    return %orig;
    }
    %end
    
    %hook LTuseinfo
    -(bool) inkingEnabled {
    if(GetPrefBool(@"key1")) {
    return TRUE;
    }
    return %orig;
    }
    %end
    
    %hook LTuserinfo
    -(void) setInkingEnabled:(bool)arg1 {
    if(GetPrefBool(@"key1")) {
    arg1 = TRUE;
    }
    %orig(arg1);
    }
    %end
    
    %hook LTuserinfo
    -(void) setValidatedStudent:(bool)arg1 {
    if(GetPrefBool(@"key1")) {
    arg1 = TRUE;
    }
    %orig(arg1);
    }
    %end
    
    %hook LTuserinfo
    -(bool) multidocEnabled {
    if(GetPrefBool(@"key1")) {
    return TRUE;
    }
    return %orig;
    }
    %end
    
    %hook LTuserinfo
    -(bool) multiDocStartedEnabled {
    if(GetPrefBool(@"key1")) {
    return TRUE;
    }
    return %orig;
    }
    %end
    
    %hook LTuserinfo
    -(bool) proStartedEnabled {
    if(GetPrefBool(@"key1")) {
    return TRUE;
    }
    return %orig;
    }
    %end
    
    %hook CLSAnalyticsMetadataController
    +(bool) hostJailbroken {
    if(GetPrefBool(@"key2")) {
    return FALSE;
    }
    return %orig;
    }
    %end
    
    
    // Automatic Popup Code
    void setup() {
        UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"Liquid Text PDF Reader Patcher by Majd Awwad for iOSGods.com!\n\nVisit the hack's official topic on iOSGods for more information and updates!" preferredStyle:UIAlertControllerStyleAlert];
    
    
        UIAlertAction *iosgods = [UIAlertAction actionWithTitle:@"Visit iOSGods.com!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
            UIApplication *application = [UIApplication sharedApplication];
            NSURL *URL = [NSURL URLWithString:@"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"];
            [application openURL:URL options:@{} completionHandler:^(BOOL success) {
                if (success) {
                    //NSLog(@"Opened url");
                }
            }];
            
        }];
        
        UIAlertAction *clubs = [UIAlertAction actionWithTitle:@"Visit the Clubs!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
            UIApplication *application = [UIApplication sharedApplication];
            NSURL *URL = [NSURL URLWithString:@"https://iosgods.com/clubs/"];
            [application openURL:URL options:@{} completionHandler:^(BOOL success) {
                if (success) {
                    //NSLog(@"Opened url");
                }
            }];
        }];
        
        UIAlertAction *thankyou = [UIAlertAction actionWithTitle:@"Thank you ?" style:UIAlertActionStyleCancel handler:nil];
        
        [igcredits addAction:iosgods];
        [igcredits addAction:clubs];
        [igcredits addAction:thankyou];
    
    
        [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:igcredits animated:true completion:nil];
    }
    
    void unsubscribeToLaunchEvent(void);
    
    static void didFinishLaunching(CFNotificationCenterRef center, void *observer,
                                   CFStringRef name, const void *object, CFDictionaryRef info) {
        setup();
        unsubscribeToLaunchEvent();
    }
    
    const char *authObserver = "authObserver";
    
    void subscribeToLaunchEvent() {
        CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), authObserver, &didFinishLaunching,
                                        (CFStringRef)UIApplicationDidFinishLaunchingNotification,
                                        NULL, CFNotificationSuspensionBehaviorDrop);
    }
    
    void unsubscribeToLaunchEvent() {
        CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), authObserver,
                                           (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL);
    }
    
    __attribute__((constructor)) static void initialize() {
        subscribeToLaunchEvent();
    }
    

     

    Makefile:

    ARCHS = armv7 arm64
    TARGET = iphone:clang:latest:latest
    #THEOS_PACKAGE_DIR_NAME = debs
    PACKAGE_BUILDNAME = iOSGods.com
    #DEBUG = 0
    FINALPACKAGE = 1
    FOR_RELEASE = 1
    #GO_EASY_ON_ME = 1
    
    include $(THEOS)/makefiles/common.mk
    
    TWEAK_NAME = LiquidTextPDF
    LiquidTextPDF_FILES = Tweak.xm
    LiquidTextPDF_FRAMEWORKS = UIKit
    LiquidTextPDF_LDFLAGS += -Wl,-segalign,4000
    
    include $(THEOS_MAKE_PATH)/tweak.mk
    
    
    SUBPROJECTS += LiquidTextPDFSettings # To compile your project as a Tweak only, comment out or remove this line.
    include $(THEOS_MAKE_PATH)/aggregate.mk
    

     

    • Like 1
  2. aKwK6AF.png

    ReProvision

    ReProvision is a new way to resign applications easily without the need for a developer account, just like ext3nder, but it’s better than ext3nder, the UI design is really neat and very simple to use

     

    Installation:

     

     

    How to download?

    Hidden Content

      1. Add this source to Cydia: http://repo.incendo.ws/

       

      2. Search for ReProvision and install it (make sure to delete Ext3nder first just for safety)

       

      3. You are done, now you can finally use it!

    All credit goes to their respective owners

     

    • Like 141
    • Winner 9
    • Thanks 37
    • Haha 7
    • Agree 9
    • Informative 5
  3. I get this error:

    1 error generated.                                                                                                                           

    make[3]: *** [/var/theos/makefiles/instance/rules.mk:246: /var/mobile/hotspotvpn/.theos/obj/arm64/Tweak.xm.07d950b2.o] Error 1               

    ==> Compiling Tweak.xm (armv7)…                                                                                                              

    Tweak.xm:45:1: error: control may reach end of non-void function [-Werror,-Wreturn-type]                                                     

     

     

    Tweak.xm: (I used the 3.0 template from iOS Gods)

    @import Foundation;

    @import UIKit;

    #import <substrate.h>

    #import "vm_writeData.h"

     

    // To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-offsets/

    // To Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject/

     

    #define PLIST_PATH @"/var/mobile/Library/Preferences/com.majdawwad.hotspotvpn.plist"

     

    inline bool GetPrefBool(NSString *key) {

            return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];

    }

     

     

    // Add your MS/Flex/MSHook Code here. Examples can be found on iOSGods.

     

     

    %ctor {

     

        // Code Injection example

        if(GetPrefBool(@"key1")) {

          vm_writeData(0x123456, 0x123456); // 

        }

     

        if(GetPrefBool(@"key2")) {

          vm_writeData(0x10963C, 0xC0F8AC70); // 

        }

     

        if(GetPrefBool(@"key3")) {

          vm_writeData(0x1806B8, 0x381C); // ARMv7Offsets

          vm_writeData(0x2FA51C, 0x381C); // 

          vm_writeData(0x1001D98E0, 0x1F2003D5); // ARM64Offsets

          vm_writeData(0x10038DD0C, 0x1F2003D5); // 

        }

     

    }

     

    %hook AFUserAccount

    -(bool) isElite {

    if(GetPrefBool(@"key1")) {

    return TRUE;

    }

    return %orig;

    }

    %end

     

     

    %hook AFUserAccount

    -(void) setIsElite:(bool)arg1 {

    if(GetPrefBool(@"key1")) {

    arg1 = TRUE;

    }

    %orig(arg1);

    }

    %end

     

    %hook AFUserAccount

    -(void) setAuto_renew:(bool)arg1 {

    if(GetPrefBool(@"key1")) {

    arg1 = TRUE;

    }

    %orig(arg1);

    }

    %end

     

    %hook AFUserAccount

    -(bool) auto_renew {

    if(GetPrefBool(@"key1")) {

    return TRUE;

    }

    return %orig;

    }

    %end

     

    %hook AFUserAccount

    -(bool) isValid {

    if(GetPrefBool(@"key1")) {

    return TRUE;

    }

    return %orig;

    }

    %end

     

    %hook AFUserAccount

    -(void) setIsValid:(bool)arg1 {

    if(GetPrefBool(@"key1")) {

    arg1 = TRUE;

    }

    %orig(arg1);

    }

    %end

     

    %hook AFUserAccount

    -(bool) hasLifetime {

    if(GetPrefBool(@"key1")) {

    return TRUE;

    }

    return %orig;

    }

    %end

     

    %hook AFUserAccount

    -(void) setHasLifetime:(bool)arg1 {

    if(GetPrefBool(@"key1")) {

    arg1 =TRUE;

    }

    %orig(arg1);

    }

    %end

     

    %hook CLSAnalyticsMetadataController

    +(bool) hostJailbroken {

    if(GetPrefBool(@"key2")) {

    return FALSE;

    }

    return %orig;

    }

    %end

     

     

     

     

    // Automatic Popup Code

    void setup() {

        UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"Hotspot Sheild VPN Cheats by Majd Awwad for iOSGods.com!\n\nVisit the hack's official topic on iOSGods for more information and updates!" preferredStyle:UIAlertControllerStyleAlert];

     

        UIAlertAction *iosgods = [UIAlertAction actionWithTitle:@"Visit iOSGods.com!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){

        [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"]];

        }];

     

        UIAlertAction *clubs = [UIAlertAction actionWithTitle:@"Visit the Clubs!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){

        [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/clubs/"]];

        }];

     

        UIAlertAction *thankyou = [UIAlertAction actionWithTitle:@"Thank you ?" style:UIAlertActionStyleCancel handler:nil];

     

        [igcredits addAction:iosgods];

        [igcredits addAction:clubs];

        [igcredits addAction:thankyou];

     

        [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:igcredits animated:true completion:nil];

    }

     

    void unsubscribeToLaunchEvent(void);

     

    static void didFinishLaunching(CFNotificationCenterRef center, void *observer,

                                   CFStringRef name, const void *object, CFDictionaryRef info) {

        setup();

        unsubscribeToLaunchEvent();

    }

     

    const char *authObserver = "authObserver";

     

    void subscribeToLaunchEvent() {

        CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), authObserver, &didFinishLaunching,

                                        (CFStringRef)UIApplicationDidFinishLaunchingNotification,

                                        NULL, CFNotificationSuspensionBehaviorDrop);

    }

     

    void unsubscribeToLaunchEvent() {

        CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), authObserver,

                                           (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL);

    }

     

    __attribute__((constructor)) static void initialize() {

        subscribeToLaunchEvent();

    }

     

  4. How to fix this error?

    	find /var/mobile/betternetpatcher/.theos/_ -name \*.png -a ! -type l -exec pincrush -i {} \;                                                 
    	find /var/mobile/betternetpatcher/.theos/_ \( -name \*.plist -or -name \*.strings \) -exec plutil -convert binary1 {} \;                     
    	find: ‘plutil’: Bad CPU type in executable     
    	

                                                                                                                                                                                                       

  5. What is this?

     

    This is used to disable Wifi on a specific device without the user knowing, so that he can’t connect to the Wifi until you enable it again.

    THIS IS FOR EDUCATIONAL PUPOSES ONLY

    ⚠️ USE IT AT YOUR OWN RISK ⚠️

    ⚠️ I AM NOT RESPONSIBLE FOR ANYTHING THAT HAPPENS ⚠️

     

    NetKillUIBeta for iOS 11 has been released by Julioverne here is how to install it:

    Hidden Content

      1. First of all open this link, Press “Add Source to Cydia”, and add the source

      2. Then go to the Search section and search for NetKillUIBeta (iOS 11)

      3.Install it and you’re done!

    If you want to know which ip address is the device of the targeted victim download Fing from the Appstore

     

    credit goes to the creator and Julioverne

    • Like 181
    • Winner 17
    • Thanks 27
    • Haha 17
    • Agree 20
    • Informative 9
  6. 19 minutes ago, busmanl30 said:

    i did not modify anything but just compiled to see if my theos would have any problems and sadlyt it did. im on windows 10 using ubuntu to run theos and i got this little nice error 

    
    > Making all for tweak baseballbetter…
    ==> Preprocessing Tweak.xm…
    ==> Preprocessing Tweak.xm…
    ==> Compiling Tweak.xm (arm64)…
    While building module 'Foundation' imported from /opt/theos/Prefix.pch:11:
    In file included from <module-includes>:2:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h:128:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h:26:49: error: nullability specifier '_Nullable' cannot be applied to non-pointer type 'uuid_t' (aka 'unsigned char [16]')
    - (instancetype)initWithUUIDBytes:(const uuid_t _Nullable)bytes;
                                                    ^
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h:29:30: error: nullability specifier '_Nonnull' cannot be applied to non-pointer type 'uuid_t' (aka 'unsigned char [16]')
    - (void)getUUIDBytes:(uuid_t _Nonnull)uuid;
                                 ^
    In file included from <built-in>:1:
    /opt/theos/Prefix.pch:11:11: fatal error: could not build module 'Foundation'
                    #import <Foundation/Foundation.h>
                     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    In file included from <module-includes>:2:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:11:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h:8:9: fatal error: could not build module 'Foundation'
    #import <Foundation/Foundation.h>
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    In file included from <module-includes>:1:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h:9:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h:10:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h:12:9: fatal error: could not build module 'Foundation'
    #import <Foundation/NSValue.h>
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    While building module 'OpenGLES' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h:7:
    In file included from <module-includes>:2:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h:8:10: fatal error: could not build module 'Foundation'
    #include <Foundation/Foundation.h>
     ~~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    While building module 'Metal' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h:7:
    In file included from <module-includes>:2:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h:9:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h:8:9: fatal error: could not build module 'Foundation'
    #import <Foundation/Foundation.h>
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    While building==> Compiling Tweak.xm (armv7)…
    While building module 'Foundation' imported from /opt/theos/Prefix.pch:11:
    In file included from <module-includes>:2:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h:128:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h:26:49: error: nullability specifier '_Nullable' cannot be applied to non-pointer type 'uuid_t' (aka 'unsigned char [16]')
    - (instancetype)initWithUUIDBytes:(const uuid_t _Nullable)bytes;
                                                    ^
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h:29:30: error: nullability specifier '_Nonnull' cannot be applied to non-pointer type 'uuid_t' (aka 'unsigned char [16]')
    - (void)getUUIDBytes:(uuid_t _Nonnull)uuid;
                                 ^
    In file included from <built-in>:1:
    /opt/theos/Prefix.pch:11:11: fatal error: could not build module 'Foundation'
                    #import <Foundation/Foundation.h>
                     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    In file included from <module-includes>:2:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:11:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h:8:9: fatal error: could not build module 'Foundation'
    #import <Foundation/Foundation.h>
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    In file included from <module-includes>:1:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h:9:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h:10:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h:12:9: fatal error: could not build module 'Foundation'
    #import <Foundation/NSValue.h>
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    While building module 'OpenGLES' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h:7:
    In file included from <module-includes>:2:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h:8:10: fatal error: could not build module 'Foundation'
    #include <Foundation/Foundation.h>
     ~~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    While building module 'Metal' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h:7:
    In file included from <module-includes>:2:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h:9:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h:8:9: fatal error: could not build module 'Foundation'
    #import <Foundation/Foundation.h>
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'QuartzCore' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:9:
    While building module 'Metal' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h:7:
     module 'Metal' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h:7:
    While building module 'IOSurface' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h:15:
    While building module 'IOSurface' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h:15:
    In file included from <module-includes>:5:
    In file included from <module-includes>:5:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h:15:9: fatal error: could not build module 'Foundation'
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h:15:9: fatal error: could not build module 'Foundation'
    #import <Foundation/Foundation.h>
    #import <Foundation/Foundation.h>
     ~~~~~~~^
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'CoreImage' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
    While building module 'CoreImage' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
    In file included from <module-includes>:2:
    In file included from <module-includes>:2:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h:9:9: fatal error: could not build module 'Foundation'
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h:9:9: fatal error: could not build module 'Foundation'
    #import <Foundation/Foundation.h>
    #import <Foundation/Foundation.h>
     ~~~~~~~^
     ~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'CoreImage' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
    While building module 'CoreImage' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
    While building module 'CoreVideo' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:10:
    While building module 'CoreVideo' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:10:
    In file included from <module-includes>:2:
    In file included from <module-includes>:2:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h:29:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h:29:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h:461:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h:461:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h:26:10: fatal error: could not build module 'IOSurface'
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h:26:10: fatal error: could not build module 'IOSurface'
    #include <IOSurface/IOSurfaceRef.h>
    #include <IOSurface/IOSurfaceRef.h>
     ~~~~~~~~^
     ~~~~~~~~^
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'UIKit' imported from /opt/theos/Prefix.pch:20:
    While building module 'FileProvider' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h:14:
    While building module 'FileProvider' imported from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h:14:
    In file included from <module-includes>:1:
    In file included from <module-includes>:1:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h:8:
    In file included from /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h:8:
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h:8:9: fatal error: could not build module 'Foundation'
    /opt/theos/sdks/iPhoneOS11.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h:8:9: fatal error: could not build module 'Foundation'
    #import <Foundation/Foundation.h>
    #import <Foundation/Foundation.h>
     ~~~~~~~^
     ~~~~~~~^
    11 errors generated.
    11 errors generated.
    /opt/theos/makefiles/instance/rules.mk:249: recipe for target '/home/busmanl30/baseballbetter/.theos/obj/arm64/Tweak.xm.f7eaed0a.o' failed
    /opt/theos/makefiles/instance/rules.mk:249: recipe for target '/home/busmanl30/baseballbetter/.theos/obj/armv7/Tweak.xm.796049ad.o' failed
    make[3]: *** [/home/busmanl30/baseballbetter/.theos/obj/arm64/Tweak.xm.f7eaed0a.o] Error 1
    make[3]: *** [/home/busmanl30/baseballbetter/.theos/obj/armv7/Tweak.xm.796049ad.o] Error 1
    rm /home/busmanl30/baseballbetter/.theos/obj/arm64/Tweak.xm.mm
    rm /home/busmanl30/baseballbetter/.theos/obj/armv7/Tweak.xm.mm
    /opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/busmanl30/baseballbetter/.theos/obj/armv7/baseballbetter.dylib' failed
    make[2]: *** [/home/busmanl30/baseballbetter/.theos/obj/armv7/baseballbetter.dylib] Error 2
    make[2]: *** Waiting for unfinished jobs....
    /opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/busmanl30/baseballbetter/.theos/obj/arm64/baseballbetter.dylib' failed
    make[2]: *** [/home/busmanl30/baseballbetter/.theos/obj/arm64/baseballbetter.dylib] Error 2
    /opt/theos/makefiles/instance/library.mk:24: recipe for target 'internal-library-all_' failed
    make[1]: *** [internal-library-all_] Error 2
    /opt/theos/makefiles/master/rules.mk:123: recipe for target 'baseballbetter.all.tweak.variables' failed
    make: *** [baseballbetter.all.tweak.variables] Error 2
    root@LAPTOP-81N20LT2:/home/busmanl30/baseballbetter#

     

    Try to install the iOS 9.2 SDK

  7. 2 hours ago, Bryan1343 said:

    Still nothing?

    give me an answer please 

    if it is possible to hack or not 

    When GamePlayer releases for iOS 11.2.6, i’m sure it is going to be hackable

    • Like 1
    • Informative 1
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines