-
Posts
203 -
Joined
-
Last visited
Everything posted by Gav1474
-
I got the help from admin and other in this forum to complete my tweak.xm ( hook ) I did it from scratch without flex converter, the bundle Id is correct and make file too... You wanna see my tweak fil ? %hook UBTripAddressesViewController -(bool)_allowsAddressesViewController { return TRUE; } %end %hook UBTripAddressesView -(bool)shouldDisplayDropoff { return TRUE; } %end %hook UBTrippAddressesView -(void)_updateDropoffContentEdgeInsets { return %orig(); } %end %hook UBEarningsTrip -(id)dropoffAddress { return %orig(); } %end %hook UBTrip -(id)dropoffLocation { return %orig(); } %end %hook UBSecondaryDispatchView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBSecondaryDispatchDefaultAcceptView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBOnTripMapViewController -(bool)_allowsDropoffLocationToBeShown { return %orig(); } %end %hook UBTripAddressesView -(bool)shouldDisplayPickup { return FALSE; } %end %hook UBNavigationInfoViewController -(void)_updateDisplayForDisplay { return %orig(); } %end %hook UBNavigationInfoViewController -(void)_updateDisplay { return %orig(); } %end %hook UBTripAddressesViewController -(void)_updateDisplayForDisplay { return %orig(); } %end %hook UBTripAddressesViewController -(void)_updateDisplay { return %orig(); } %end %hook UBSecondaryDispatchDefaultAcceptView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(TRUE); } %end %hook UBTripAddressesView -(void)setDropoffAddressText:(id)arg1 isEnabled:(bool)arg2 { %orig(arg1, TRUE); } %end %hook UBSecondaryDispatchView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(TRUE); } %end
-
Reckecked the tweak.xm? i did convert with the help of some member her the flex tweaks to %hook and theos successfully created the deb file without error, i am using an i6s 9.3.2... what do you mean with recheck?
-
yes I can now confirm that I used the right bundle ID
-
I think to the same thing to so I checked, it's was the right bundle ID...
-
hello folks!!! First I would like to say thanks to everyone who will answer this post !!! i have 2 questions: i created a deb file with theos/flex but when i installed the deb nothing is happening with the app the deb dosent tweak the app at all.... and can I save an app with all the flex tweak then signe it with my developer certificate to install it on a non jailbroken I device? I creat a deb theos but like I understand I when I backup the app the deb dos not come with it
-
%hook UBTripAddressesViewController -(bool)_allowsAddressesViewController { return TRUE; } %end %hook UBTripAddressesView -(bool)shouldDisplayDropoff { return TRUE; } %end %hook UBTrippAddressesView -(void)_updateDropoffContentEdgeInsets { return %orig(); } %end %hook UBEarningsTrip -(id)dropoffAddress { return %orig(); } %end %hook UBTrip -(id)dropoffLocation { return %orig(); } %end %hook UBSecondaryDispatchView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBSecondaryDispatchDefaultAcceptView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBOnTripMapViewController -(bool)_allowsDropoffLocationToBeShown { return %orig(); } %end %hook UBTripAddressesView -(bool)shouldDisplayPickup { return FALSE; } %end %hook UBNavigationInfoViewController -(void)_updateDisplayForDisplay { return %orig(); } %end %hook UBNavigationInfoViewController -(void)_updateDisplay { return %orig(); } %end %hook UBTripAddressesViewController -(void)_updateDisplayForDisplay { return %orig(); } %end %hook UBTripAddressesViewController -(void)_updateDisplay { return %orig(); } %end %hook UBSecondaryDispatchDefaultAcceptView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(TRUE); } %end %hook UBTripAddressesView -(void)setDropoffAddressText(id)arg1 isEnabled:(bool)arg2 { %orig(arg1, TRUE); } %end %hook UBSecondaryDispatchView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { %orig(arg1, TRUE); } %end
-
getting error... Password: iPhone:/var/mobile root# cd /var/uberx iPhone:/var/uberx root# make package > Making all for tweak uberx… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… Tweak.xm:86:162: error: expected function body after function declarator ..._LOGOS_SELF_CONST self, SEL _cmd)(id)arg1 isEnabled:(bool)ar... ^ 1 error generated. make[3]: *** [/var/uberx/.theos/obj/debug/armv7/Tweak.xm.8b659425.o] Error 1 make[2]: *** [/var/uberx/.theos/obj/debug/armv7/uberx.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [uberx.all.tweak.variables] Error 2 iPhone:/var/uberx root#
-
%hook UBSecondaryDispatchDefaultAcceptView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { arg1 = TRUE; } %end %hook UBTripAddressesView -(void)setDropoffAddressText(id)arg1 isEnabled:(bool)arg2 { arg2 = TRUE; } %end %hook UBAddress -(void)setDisplayTitle:(id)arg1 %end %hook UBSecondaryDispatchView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { arg1 = TRUE; } %end yeah I got it now it's a success:) but still I get error with those one https://imgur.com/gallery/lP6Dn %hook UBSecondaryDispatchDefaultAcceptView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { arg1 = TRUE; } %end %hook UBTripAddressesView -(void)setDropoffAddressText(id)arg1 isEnabled:(bool)arg2 { arg2 = TRUE; } %end %hook UBAddress -(void)setDisplayTitle:(id)arg1 %end %hook UBSecondaryDispatchView -(void)setShowPickupAndDropoffAddress:(bool)arg1 { arg1 = TRUE; } %end
-
Dida bro please can you help me a bit, i have tried everything even your flex converter with no luck ;( please take a look at those picture i uploaded on imgur https://imgur.com/gallery/S4T6G i need help with those return PASS-THROUGH and the ones with value and argument on same time. please ok i will try now
-
please guys can someone help me with this , i am getting error when i try to "make package " the ones in red (void) pass-through did i wrote them correctly ? %hook UBTripAddressesViewController -(bool)_allowsAddressesViewController { return TRUE; } %end %hook UBTripAddressesView -(bool)shouldDisplayDropoff { return TRUE; } %end %hook UBTrippAddressesView -(void)_updateDropoffContentEdgeInsets { return PASS-THROUGH; } %end %hook UBEarningsTrip -(id)dropoffAddress { return PASS-THROUGH; } %end %hook UBTrip -(id)dropoffLocation { return PASS-THROUGH; } %end %hook UBSecondaryDispatchView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBSecondaryDispatchDefaultAcceptView -(bool)showPickupAndDropoffAddress { return TRUE; } %end %hook UBOnTripMapViewController -(bool)_allowsDropoffLocationToBeShown { return PASS-THROUGH; } %end %hook UBTripAddressesView -(bool)shouldDisplayPickup { return FALSE; } %end %hook UBNavigationInfoViewController -(void)_updateDisplayForDisplay { return PASS-THROUGH; } %end %hook UBNavigationInfoViewController -(void)_updateDisplay { return PASS-THROUGH; } %end %hook UBTripAddressesViewController -(void)_updateDisplayForDisplay { return PASS-THROUGH; } %end %hook UBTripAddressesViewController -(void)_updateDisplay { return PASS-THROUGH; } %end
-
I am going to lose it! Can you help me to write the tweak.xm file please ?
-
. I am getting this now Last login: Fri Nov 25 16:39:33 on ttys000 iPhone:~ mobile$ su Password: iPhone:/var/mobile root# cd /var/uberx iPhone:/var/uberx root# make package > Making all for tweak uberx… ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… Tweak.xm:8:162: error: expected function body after function declarator ..._LOGOS_SELF_CONST self, SEL _cmd)(id)arg1 isEnabled:(bool)ar... ^ 1 error generated. make[3]: *** [/var/uberx/.theos/obj/debug/armv7/Tweak.xm.8b659425.o] Error 1 make[2]: *** [/var/uberx/.theos/obj/debug/armv7/uberx.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [uberx.all.tweak.variables] Error 2 iPhone:/var/uberx root#
-
still the same Error
-
https://imgur.com/gallery/bqVjP
-
I did it I have the 9.1 sdk unpacked in the sdks folder
-
hone:/var/uberx root# make package /bin/bash: tr: command not found /bin/bash: tr: command not found /bin/bash: tr: command not found /bin/bash: xcode-select: command not found /bin/bash: xcode-select: command not found /bin/bash: xcode-select: command not found /bin/bash: xcode-select: command not found /bin/bash: xcode-select: command not found /bin/bash: xcode-select: command not found /bin/bash: xcrun: command not found /bin/bash: head: command not found /bin/bash: cut: command not found /bin/bash: tr: command not found /bin/bash: cut: command not found /bin/bash: cut: command not found /bin/bash: cut: command not found /bin/bash: xcode-select: command not found /bin/bash: xcode-select: command not found /bin/bash: xcrun: command not found /bin/bash: xcode-select: command not found /bin/bash: xcrun: command not found ==> Error: You do not have an SDK in /Platforms/iPhoneOS.platform/Developer/SDKs. I am using sdk 7.1
-
bro I will try this tonight I'll keep you in touch, ( I'll pay you a beer if this works
-
Paste 2qzr2 was not found. .---. / \ ---- _ | O O | _ --- \ ~-. `. .' .-~ / \ ~-_> <_-~ / \ / \ / \ / \ / \ / \ / \ \ \ \ \ \ \ \ \ l \ / V Go to the homepage and try again.
-
I want to convert flex tweak into deb with theos on my idevice, the only one I couldn't convert its the those with argument and value on the same tweak( please take a look at the pic I uploaded) so bro I'll be happy if you can help me if not please just walk away, I write this post on the help section to iosgods it's because I need help if you understand what I nean:)
-
ask befor you make your own conclusions! I was on this topic earlier didn't help at all, I am not a programmer, I can convert a basic flex to hook but I am stuck with the ones with "argument" twice... So men I'll be very happy if you someone can help me with those 4 pic ( uploaded on imgur) . I did install the FlexConverter but o can make it work, I actually have talked to the guy who made this solution...