heres my files
Makefile
export ARCHS = armv7 arm64
include theos/makefiles/common.mk
TWEAK_NAME = WeChatEnhancer
WeChatEnhancer_FILES = Tweak.xm
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "killall -9 SpringBoard"
WeChatEnhancer.plist
{ Filter = { Bundles = ( "com.apple.springboard" ); }; }
Tweak.xm
%hook MMImagePickerController
-(int)maxImageCount{
return 999;
}
-(void)setMaxImageCount:(int)arg1 {
arg1 = 999;
}
%end
%hook MMImagePickerManagerOptionObj
-(long long)maxImageCount {
return 999;
}
-(void)setMaxImageCount:(long long)arg2 {
arg2 = 999;
}
%end
control
Package: com.marcos.wechatenhancer
Name: WeChat Enhancer
Depends: mobilesubstrate
Version: 0.0.1
Architecture: iphoneos-arm
Description: An awesome MobileSubstrate tweak!
Maintainer: Marcos
Author: Marcos
Section: Tweaks
any ideas whats going wrong? it compiles and installs but doesnt work. I make the same changes in Flex 2 and those work...?