Questions tagged [tweak]

A tweak refers to a customization of a software application intended to facilitate its integration within the host system.

References

285 questions
3
votes
3 answers

Minor tweaks in story based agile/iterative development

What is the preferred way to treat tiny interface tweaks such as "make the menu colour lighter when you hover over it" when using stories. My first though was to treat it as a bug; stick it on an index card and add it to the bugs file for scheduling…
Jake Worrell
  • 125
  • 1
  • 6
3
votes
1 answer

Add new UIBackgroundMode to an App-Store app with Jailbreak tweak/script

I made an App-Store app and would like to now make a tweak to let it run in the background using the VoIP UIBackgroundMode (keeping a socket open). The UIBackgroundModes are stored in the Info.plist file. What would be the best way to give my app…
newenglander
  • 2,019
  • 24
  • 55
3
votes
1 answer

Theos tweak MSHookFunction

I followed http://brandontreb.com/beginning-jailbroken-ios-development-building-and-deployment to make a tweak. but after i done successfully with the helloworld tweak. I hook the fopen using MSHookFunction and then i meet a linking error Making…
3
votes
1 answer

How to simulate a click on home screen of (jailbroken) iPhone?

I want to simulate a click on the icon of an app on the home screen of jailbroken iPhone. I used the code below, but it could not take effect. Did I do something wrong? Is the method to getFrontMostAppPort() right? Event if I tried to use…
Suge
  • 2,808
  • 3
  • 48
  • 79
3
votes
1 answer

How to use the value in PSLinkListCell in preference bundle?

I would like to make a preference bundle for my jailbreak tweak. I successfully made a preference bundle with a switch that works. But I would like a setting to choose color. Example: Blue Color > Yellow Green So if…
junyi00
  • 792
  • 3
  • 8
  • 28
3
votes
1 answer

Importing does not work

I am making a cydia tweak on Xcode using IOSOpenDev and i tried to import but i'm getting this error! 'AppKit/AppKit.h' file not found' This is my code which changes the flash color when someone tries to take a screenshot #include…
junyi00
  • 792
  • 3
  • 8
  • 28
3
votes
1 answer

theos libxml2: No such file or directory

I'm use theos write a tweak and need use libxml2. I had add LDFLAGS like this: widget_INSTALL_PATH = /Library/WeeLoader/Plugins/ widget_FRAMEWORKS = UIKit CoreGraphics widget_LDFLAGS = -lxml2 the code in my xxx.m #import…
justin
  • 175
  • 2
  • 14
3
votes
3 answers

Which method from which header is called when making a phone call in iOS?

I'm developing a tweak through logos template from ios open dev, but I've been looking around all header files in existing frameworks and I'm not finding the correct header which have method that's called after someone make a phone call ? Does any…
2
votes
1 answer

What is a header for iPod Touch app developing, and what is this header for: "SBStatusBarDataManager;"?

Many tweak developers use the header SBStatusBarDataManager;. What is this header for and what is the purpose of headers as well? This is mostly refers to jailbroken ipods/iphones.
Luka Momcilovic
  • 159
  • 2
  • 16
2
votes
1 answer

In Visual Studio 2022, as soon as I move my mouse and hover over other item it changes immediately. ¿How can I fix this?

As soon as I hover on a menu item, the menu reacts and changes to the next immediately. That makes navigating between menus items extremely difficult because the lack of the 200/300ms typical delay. Is there a setting to change this almost unusable…
ZetaF
  • 51
  • 5
2
votes
2 answers

Can be a docker layer "bypassed" on build?

let's supposse I have a Dockerfile like this: FROM debian:stretch RUN apt update RUN apt install -y wget RUN wget https://stackoverflow.com/ # I know the wget is useless. Is just an example :) CMD ["echo", "hello-world"] I want to put over the…
OscarAkaElvis
  • 5,384
  • 4
  • 27
  • 51
2
votes
3 answers

php.ini file saves but does not show changes

So I added a php info page checked the directory of my ini and changed and saved the new memory limit which I set to 64m. Changes are saved and when I reopen the file it shows me that it has been changed however when I go back to the php info page…
in00b
  • 99
  • 1
  • 3
  • 9
2
votes
1 answer

Jail broken iOS: Communication between tweak and application

I have my iOS application (standard application with legitimate configuration). It gets information about phone number from network and shows to user. Application can work with network, has storage and it's very clever :). Also I have a tweak for…
D.Tyagniy
  • 55
  • 1
  • 5
2
votes
1 answer

UIAutomation not enabled in Settings error message

When I am writing a tweak application with [[UIATarget localTarget].frontMostApp isVisible] in main.mm main function, I get the exception saying * exception UIAutomation is not enabled on this device. UIAutomation must be enabled in Settings.…
kavitha k
  • 51
  • 4
2
votes
0 answers

new thread in IOS tweak?

I want to invoke IOS system delegate(jailbreaked) in tweak(dylib) for all app, for example - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations I try to do this in tweak.xm: void* Run(void *arg) { …
scvyao
  • 143
  • 1
  • 12
1 2
3
18 19