Jump to content

EricLegend

Member
  • Posts

    34
  • Joined

  • Last visited

Everything posted by EricLegend

  1. No, it's just for the first time they open kik with the tweak installed, they will see a UIAlert saying thank you for installing.
  2. It seems to be hooked farther down for the greeting message and other notification alerts.
  3. Hello everyone, I was wondering if anyone could help me solve this problem. I'm tryint to make a button to kill kik when the button is tapped, but since ios 9 the button isn't working. I've looked around and found nothing. Hopfully someone can help. Here is the code. [mutableNewArr addObject:[[[%c(SettingsOptionButton) alloc] initWithTitle:@"Click to close Kik and apply settings" iconImage:restart executeOnTap:^(void){ system("killall -9 Kik"); }] autorelease]]; Thanks for the help!
  4. the color picker works fine in another project so it's not that, how can I check theos for that command?
  5. Hello everyone, I was hoping someone could help me with this weird error I am having. I'm on iOS 9.0.2 other projects can compile fine, just this one seems to be off. Any help would be great. Error: make: getcwd: No such file or directory make: *** No rule to make target `package'. Stop. Here is the make file: ARCHS = armv7 arm64 TARGET = iphone:clang:latest:latest #CFLAGS = -fobjc-arc #THEOS_PACKAGE_DIR_NAME = debs include $(THEOS)/makefiles/common.mk include $(THEOS)/makefiles/aggregate.mk TWEAK_NAME = K9 K9_FILES = Tweak.xm K9_FRAMEWORKS = UIKit CoreGraphics K9_LIBRARIES = colorpicker # Make sure to put the latest libcolorpicker.dylib from ios /usr/lib/libcolorpicker.dylib K9_LDFLAGS += -Wl,-segalign,4000 include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 Kik" # No Reason to kill SpringBoard since we're only injecting into kik Any help will be great thank you.
  6. wow thank you! It worked.
  7. Hello everyone! I'm getting this strange error when I try to compline my project. iOS 9.0.2 Here are the error Making all for tweak K9... make -f Makefile --no-print-directory --no-keep-going \ internal-library-compile \ _THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=K9 _THEOS_CURRENT_OPERATION=compile \ THEOS_BUILD_DIR="." _THEOS_MAKE_PARALLEL=yes make[2]: Nothing to be done for `internal-library-compile'. Making all in K9... make[1]: Entering directory `/private/var/mobile/K9/K9' Making all for bundle K9... mkdir -p "obj/K9.bundle/" mkdir -p "obj/K9.bundle/" mkdir -p "obj/K9.bundle/" for d in Resources; do \ if [ -d "$d" ]; then \ rsync -a "$d/" "./obj/K9.bundle/" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*"; \ else \ echo "Warning: ignoring missing bundle resource directory $d."; \ fi; \ done make -f Makefile --no-print-directory --no-keep-going \ internal-bundle-compile \ _THEOS_CURRENT_TYPE=bundle THEOS_CURRENT_INSTANCE=K9 _THEOS_CURRENT_OPERATION=compile \ THEOS_BUILD_DIR="." _THEOS_MAKE_PARALLEL=yes make[3]: Nothing to be done for `internal-bundle-compile'. make[1]: Leaving directory `/private/var/mobile/K9/K9' rm -rf "/private/var/mobile/K9/_" /var/theos/bin/fakeroot.sh -p "/private/var/mobile/K9/.theos/fakeroot" -c mkdir -p "/private/var/mobile/K9/_" [ -d layout ] && rsync -a "layout/" "/private/var/mobile/K9/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true Making stage for tweak K9... mkdir -p "/private/var/mobile/K9/_/Library/MobileSubstrate/DynamicLibraries/" cp ./obj/K9.dylib "/private/var/mobile/K9/_/Library/MobileSubstrate/DynamicLibraries/" if [ -f K9.plist ]; then cp K9.plist "/private/var/mobile/K9/_/Library/MobileSubstrate/DynamicLibraries/"; fi Making stage in K9... make[1]: Entering directory `/private/var/mobile/K9/K9' [ -d layout ] && rsync -a "layout/" "/private/var/mobile/K9/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true Making stage for bundle K9... mkdir -p "/private/var/mobile/K9/_/Library/PreferenceBundles/K9.bundle" rsync -a "./obj/K9.bundle/" "/private/var/mobile/K9/_/Library/PreferenceBundles/K9.bundle" mkdir -p /private/var/mobile/K9/_/Library/PreferenceLoader/Preferences cp entry.plist /private/var/mobile/K9/_/Library/PreferenceLoader/Preferences/K9.plist make[1]: Leaving directory `/private/var/mobile/K9/K9' mkdir -p "/private/var/mobile/K9/_/DEBIAN" sed -e '/^[Vv]ersion:/d' "/private/var/mobile/K9/control" > "/private/var/mobile/K9/_/DEBIAN/control" echo "Version: 1.0.0-7" >> "/private/var/mobile/K9/_/DEBIAN/control" echo "Installed-Size: 264" >> "/private/var/mobile/K9/_/DEBIAN/control" COPYFILE_DISABLE=1 /var/theos/bin/fakeroot.sh -p "/private/var/mobile/K9/.theos/fakeroot" -r dpkg-deb -b "/private/var/mobile/K9/_" "./com.niro.K9_1.0.0-7_iphoneos-arm.deb" dpkg-deb: parse error, in file `/private/var/mobile/K9/_/DEBIAN/control' near line 11 package `com.niro.k9': missing version make: *** [internal-package] Error 2After some googling I found this http://stackoverflow.com/questions/17910807/internal-package-error-2-while-building-in-theos Here is my control file in question Package: com.niro.K9 Name: K9 Depends: mobilesubstrate, preferenceloader Version: 1.0.0 Architecture: iphoneos-arm Description: K9 is a modified client for Kik, within K9 you will find everything you need to enhance your Kik experience! Maintainer: niro Author: niro Section: Tweaks Homepage: http://iosgods.com Thanks for the help have a good day/night!!
×
  • 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