-
Posts
443 -
Joined
-
Last visited
Everything posted by 45GTR
-
No, so if I had a tweak and I only wanted for it to be enabled if wifi was on, how would I do That
-
this may sound like a noob question, but how can you make your project so that it is only active if say the alarm is on?
-
Congratulations Matty! You're gonna have a handful
-
there's something wrong somewhere else in the proj.
-
ARCHS: armv7 arm64 include theos/makefiles/common.mk TWEAK_NAME = doodlejumpdcherosmultiack doodlejumpdcherosmultiack_FILES = Tweak.xm include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard" replace what's in your make file with that^
-
Great stuff bro, what about supporters?
-
Yeh, that's cool, for Windows, Cyberduck, WinScp works well too! Putty too
-
Make sure you are using the correct IP and are using the Port: 22 Also, the default username and password is root and alpine
-
Oh no I meant I didn't know that there was You guys have any ideas for a name?
-
I've checked, and no HATER I'll go with free
-
I'll just go with a donation button, can you setup a PayPal account without a card associated with it and still receive donations? Thanks for the replies Have you guys got a name for it? I've got LockDelete or childlock
-
What do u mean by free? Like using insanelyi to get it for free? Only other thing is a free tweak with a donation button
-
Hey guys I've finished making a tweak which prevents the apps on the springboard from being deleted. It's fully functional with a preference bundle. It can be especially useful in situations when you give your phone to a child and you don't want them to mess around with your phone. Question is: would you guys pay 99 cents for this?
-
Fixed!
-
it disappeared from the messages Mind sending again?
-
Here's my code for my .plist, the result is blank <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com...yList-1.0.dtd"> <plist version="1.0"> <dict> <key>entry</key> <dict> <key>cell</key> <string>PSLinkCell</string> <key>icon</key> <string>icon.png</string> <key>label</key> <string>LockDelete</string> </dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>Prevent Apps From Being Deleted</string></dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.AsD.pref</string> <key>key</key> <string>kUninstall</string> <key>label</key> <string>Enable LockDelete</string> </dict> </dict> <key>cell</key> <string>PSButtonCell</string> <key>label</key> <string>Respring</string> <key>action</key> <string>respring</string> </dict> </array> <key>title</key> <string>LockDelete</string> </dict> </plist
-
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
LOL thanks for helping me with my project -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
ok no worries! Any other sources for some neat tricks other than UIAlerts and stuff? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Ah ok, it works!!!! Any idea how to add a centred image in the settings to make it look professional? Do you want to go in the creds? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
im getting nothing to be done errors -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
ill try it, is it ok to recompile a tweak which is already installed? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
DiDA everything works, but i don't know where to put this: <dict> <key>cell</key> <string>PSButtonCell</string> <key>label</key> <string>Respring</string> <key>action</key> <string>respring</string> </dict> -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Now it says something about looking for a open tag on line 5 -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
here is some extra info, when opening the plist from ifile it says; property list/var/mobile.asd/AsD/Resources/AsD.plist invalid: close tag on line 32 doesnt match open tag array? -
Help/Support Theos Compiling Error: duplicate declaration of method
45GTR replied to 45GTR's topic in Help & Support
Oh ok thanks, trying to Add a respring button but my pref is blank in settings: <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com...yList-1.0.dtd"> <plist version="1.0"> <dict> <key>entry</key> <dict> <key>cell</key> <string>PSLinkCell</string> <key>icon</key> <string>icon.png</string> <key>label</key> <string>LockDelete</string> </dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>Prevent Apps From Being Deleted</string></dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.AsD.pref</string> <key>key</key> <string>kUninstall</string> <key>label</key> <string>Enable LockDelete</string> </dict> </dict> <key>cell</key> <string>PSButtonCell</string> <key>label</key> <string>Respring</string> <key>action</key> <string>respring</string> </dict> </array> <key>title</key> <string>LockDelete</string> </dict> </plist>