Jump to content

BestAndroidPlayer

Senior Member
  • Posts

    386
  • Joined

  • Last visited

Everything posted by BestAndroidPlayer

  1. Dude I fcking love you, it worked. Had to target 8.1 much love for always helping
  2. Added it to my sdks, still get the same error, do I have to add something in my make file so it target iPhone 8 sdk ?
  3. I already have that in my make files and tweak xm as of sdks ive got iOS 9.3 and 10.1
  4. This is the UI code I am using %hook AppDelegate -(void)applicationDidBecomeActive:(id)arg { UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Test Title" message:@"Test Message" delegate:self cancelButtonTitle:@"Close Test Pop-Up" otherButtonTitles:@"Test Link", nil]; [credits show]; [credits release]; %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Test Link"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.test.com"]]; } } %end And this is the error I get when I try to compile it Amirhosseins-iPad:/var/mobile root# cd knife Amirhosseins-iPad:/var/mobile/knife root# make package > Making all for tweak Knife… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… Tweak.xm:32:430: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 [-Werror,-Wdeprecated-declarations] ...SEL, id); static void _logos_method$_ungrouped$AppDelegate$alertView$clickedButtonAtIndex$(_LOGOS_SELF_TYPE_NORMAL AppDelegate* _LOGOS_SELF_CONST, SEL, UIAlertVie... ^ /var/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:14:1: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 [-Werror,-Wdeprecated-declarations] UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Test Title" ^ /var/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:14:26: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 [-Werror,-Wdeprecated-declarations] UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Test Title" ^ /var/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:25:171: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 [-Werror,-Wdeprecated-declarations] ...AppDelegate* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd, UIAlertView * alertView, NSInteger buttonIndex) { ^ /var/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:37:490: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 [-Werror,-Wdeprecated-declarations] ...= 0; _typeEncoding[i] = 'v'; i += 1; _typeEncoding[i] = '@'; i += 1; _typeEncoding[i] = ':'; i += 1; memcpy(_typeEncoding + i, @encode(UIAlertView *), strlen(@enc... ^ /var/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:37:521: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 [-Werror,-Wdeprecated-declarations] ...i += 1; _typeEncoding[i] = '@'; i += 1; _typeEncoding[i] = ':'; i += 1; memcpy(_typeEncoding + i, @encode(UIAlertView *), strlen(@encode(UIAlertView *))); i += st... ^ /var/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ Tweak.xm:37:559: error: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 [-Werror,-Wdeprecated-declarations] ...+= 1; _typeEncoding[i] = ':'; i += 1; memcpy(_typeEncoding + i, @encode(UIAlertView *), strlen(@encode(UIAlertView *))); i += strlen(@encode(UIAlertView *)); memc... ^ /var/theos/sdks/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:26:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ 7 errors generated. make[3]: *** [/var/mobile/knife/.theos/obj/debug/armv7/Tweak.xm.537ad2d2.o] Error 1 make[2]: *** [/var/mobile/knife/.theos/obj/debug/armv7/Knife.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [Knife.all.tweak.variables] Error 2 Amirhosseins-iPad:/var/mobile/knife root# make package Then we I change it to all UIAlertView to UIAlertController I get Amirhosseins-iPad:/var/mobile root# cd knife Amirhosseins-iPad:/var/mobile/knife root# make package > Making all for tweak Knife… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… Tweak.xm:14:57: error: 'UIAlertController' may not respond to 'initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:' [-Werror] UIAlertController *credits = [[UIAlertController alloc] initWithTitle:@"Test Title" ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ Tweak.xm:19:10: error: 'UIAlertController' may not respond to 'show' [-Werror] [credits show]; ~~~~~~~ ^ Tweak.xm:27:31: error: 'UIAlertController' may not respond to 'buttonTitleAtIndex:' [-Werror] NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; ~~~~~~~~~ ^ 3 errors generated. make[3]: *** [/var/mobile/knife/.theos/obj/debug/armv7/Tweak.xm.537ad2d2.o] Error 1 make[2]: *** [/var/mobile/knife/.theos/obj/debug/armv7/Knife.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [Knife.all.tweak.variables] Error 2 Amirhosseins-iPad:/var/mobile/knife root# Any help is appreciated
  5. Finally got it to work it was the make files, everything was lowered case in it. thanks a lot once again
  6. Weird because the deb package it gives me when I use "make package" it is only 4KB @Ted2
  7. Just a quick question and how do I compile it ? Do I use this "dpkg-deb -Z lzma -b _" or is there a different command for this ?
  8. And what are the commands to use it 0.0
  9. So I did the manual autolipo and it worked then I came upon the automatic one which is in tar format. Is there s tutorial on that ? Or where should I put these... Updated with v3.0 of auto lipo with LipoARM64: http://iosddl.net/ec418d5f1df08afe/iOSGods_CSCI_Patcher_v3.0_NewAutoLipo.nic.tar
  10. What the title says, I know how to make deb files but I don’t know how to pack it with binary so people who download the deb automatically get it and replaces theirs I am guessing.
  11. change binary permissions to 777 also make it mobile mobile then sign it, put it back in game file.app had the same problem. this worked for me ipad pro 10.1.1
  12. I sign it to the website using facebook but I feel like it is safer to use a Local Account how can I change my password and email and etc... Password keeps saying it is incorrect Forgot password doesnt work aswell
  13. Oh sht my bad. Forgot I was on the wrong section
  14. Hey, just a quick question. So I am trying to make a hack for an app called “ arena of valor”. Every time I get it from iTunes it says that it is iOS-Encrypted and cannot load the binary and when I try to use Clutch on it it says it doesn’t work. Any other way to decrypt it ?
  15. Rules of Survival By NetEase Games v1.0.0 com.netease.chiji Minium iOS Version: 7.0 Price: Free Last Update: 2017-11-14T12:28:48Z iTunes URL: https://itunes.apple.com/us/app/rules-of-survival/id1307961750?mt=8&uo=4 Jailbroken or Non-Jailbroken: both Requested Features: everything
  16. Maybe @Ted2 could help me out ?
  17. > Making all for tweak youtube1… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… xcrun: error: SDK "iphoneos" cannot be located <built-in>:1:10: error: non-portable path to file '"/uUserstthehackingfreakttheosPPrefix.pch"'; specified path differs in case from file name on disk [-Werror,-Wnonportable-include-path] #include "/users/thehackingfreak/theos/Prefix.pch" ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "/uUserstthehackingfreakttheosPPrefix.pch" Tweak.xm:4:10: error: non-portable path to file '"/uUserstthehackingfreakttheosPPrefix.pch"'; specified path differs in case from file name on disk [-Werror,-Wnonportable-include-path] #include "/users/thehackingfreak/theos/Prefix.pch" ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "/uUserstthehackingfreakttheosPPrefix.pch" 2 errors generated. make[3]: *** [/users/thehackingfreak/youtube1/.theos/obj/debug/armv7/Tweak.xm.76252f58.o] Error 1 make[2]: *** [/users/thehackingfreak/youtube1/.theos/obj/debug/armv7/youtube1.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [youtube1.all.tweak.variables] Error 2 AmirYTs-MBP:youtube1 thehackingfreak$
  18. I've got command lines installed I put the sdks here /users/thehackingfreak/theos/sdks
  19. Can you link a tutorial or the commands ? Not sure if I’ve done them
  20. so I did make package, it asked me for SDKs, I downloaded 9.3.3 and 10.2 and put it in the theos/sdks folder and Ive got this now AmirYTs-MBP:~ thehackingfreak$ cd /users/thehackingfreak/youtube1 AmirYTs-MBP:youtube1 thehackingfreak$ Make Info make: *** No rule to make target `Info'. Stop. AmirYTs-MBP:youtube1 thehackingfreak$ Make Package Install Profile='profilemadewithxcode' make: *** No rule to make target `Package'. Stop. AmirYTs-MBP:youtube1 thehackingfreak$ make package xcrun: error: SDK "iphoneos" cannot be located xcrun: error: SDK "iphoneos" cannot be located xcrun: error: SDK "iphoneos" cannot be located ==> Error: You do not have an SDK in /Library/Developer/CommandLineTools/Platforms/iPhoneOS.platform/Developer/SDKs or /users/thehackingfreak/theos/sdks. make: *** [before-all] Error 1 AmirYTs-MBP:youtube1 thehackingfreak$ Make Package Profile='profilemadewithxcode' make: *** No rule to make target `Package'. Stop. AmirYTs-MBP:youtube1 thehackingfreak$ Make package xcrun: error: SDK "iphoneos" cannot be located xcrun: error: SDK "iphoneos" cannot be located xcrun: error: SDK "iphoneos" cannot be located > Making all for tweak youtube1… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… xcrun: error: SDK "iphoneos" cannot be located <built-in>:1:10: error: non-portable path to file '"/uUserstthehackingfreakttheosPPrefix.pch"'; specified path differs in case from file name on disk [-Werror,-Wnonportable-include-path] #include "/users/thehackingfreak/theos/Prefix.pch" ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "/uUserstthehackingfreakttheosPPrefix.pch" 1 error generated. make[3]: *** [/users/thehackingfreak/youtube1/.theos/obj/debug/armv7/Tweak.xm.76252f58.o] Error 1 make[2]: *** [/users/thehackingfreak/youtube1/.theos/obj/debug/armv7/youtube1.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [youtube1.all.tweak.variables] Error 2 AmirYTs-MBP:youtube1 thehackingfreak$ Make package profile='profilemadewithxcode' xcrun: error: SDK "iphoneos" cannot be located xcrun: error: SDK "iphoneos" cannot be located xcrun: error: SDK "iphoneos" cannot be located > Making all for tweak youtube1… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… xcrun: error: SDK "iphoneos" cannot be located <built-in>:1:10: error: non-portable path to file '"/uUserstthehackingfreakttheosPPrefix.pch"'; specified path differs in case from file name on disk [-Werror,-Wnonportable-include-path] #include "/users/thehackingfreak/theos/Prefix.pch" ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "/uUserstthehackingfreakttheosPPrefix.pch" 1 error generated. make[3]: *** [/users/thehackingfreak/youtube1/.theos/obj/debug/armv7/Tweak.xm.76252f58.o] Error 1 make[2]: *** [/users/thehackingfreak/youtube1/.theos/obj/debug/armv7/youtube1.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [youtube1.all.tweak.variables] Error 2 AmirYTs-MBP:youtube1 thehackingfreak$ @K_K
  21. Is it “ make package “ for theos jailed too ? Cause I thought I had to run it with xcode
  22. AmirYTs-MBP:~ thehackingfreak$ cd /users/name/youtube1 AmirYTs-MBP:youtube1 name$ Make Info make: *** No rule to make target `Info'. Stop. AmirYTs-MBP:youtube1 name$ Make Package Install Profile='profilemadewithxcode' make: *** No rule to make target `Package'. Stop. AmirYTs-MBP:youtube1 name$ Now I am getting this error
  23. Makefile:2: /opt/theos/makefiles/common.mk: No such file or directory Makefile:11: /tweak.mk: No such file or directory make: *** No rule to make target `/tweak.mk'. Stop. trying to make a tweak with these jailed and it seems like my make files are not correct my path is users/ and not /opt/ how can I redirect it ? appreciate any help
×
  • 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