leo*_*leo 0 iphone jailbreak ios theos
我设置了theos并开始越狱调整..我在网上看到rpetrich的标题只与他的theos fork兼容.所以我从github克隆了他的theos fork并将他的标题转储到/include文件夹中..
然后我不得不LDID和libsubstrate.dylib添加到文件夹狄奥,我也从下面的说明iPhoneDevWiki
然后我按照本教程进行了简单的调整
信息:我正在尝试使用iOS7 SDK在小牛上运行此功能
问题: 我完全按照教程!但由于某种原因,我得到这个错误:
Sahils-MacBook-Pro:welcomewagon Sahil$ make
/Users/Sahil/Documents/tweaks/welcomewagon/theos/makefiles/targets/Darwin/iphone.mk:48: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for tweak WelcomeWagon...
make[2]: Nothing to be done for `internal-library-compile'.
Run Code Online (Sandbox Code Playgroud)
这甚至意味着什么> Nothing to be done for 'internal-library-compile'.
我的代码是:
Tweak.xm:
#import <SpringBoard/SpringBoard.h>
%hook SpringBoard
-(void)applicationDidFinishLaunching:(id)application {
%orig;
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Welcome"
message:@"Welcome to your iPhone Brandon!"
delegate:nil
cancelButtonTitle:@"Thanks"
otherButtonTitles:nil];
[alert show];
[alert release];
}
%end
Run Code Online (Sandbox Code Playgroud)
Makefile文件:
include theos/makefiles/common.mk
ARCHS = armv7
TWEAK_NAME = WelcomeWagon
WelcomeWagon_FILES = Tweak.xm
WelcomeWagon_FRAMEWORKS = UIKit
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "killall -9 SpringBoard"
Run Code Online (Sandbox Code Playgroud)
Nothing to be done for 'internal-library-compile'.不是错误.这意味着库编译步骤没有任何工作要做.
这是GNU make告诉你你的调整已经被编译的方式,并且自从你上次编译它以来没有任何改变.它没有"无所事事".
| 归档时间: |
|
| 查看次数: |
1140 次 |
| 最近记录: |