Difference between revisions of "/Applications/AppleTV.app/Appliances"

From The iPhone Wiki
Jump to: navigation, search
Line 1: Line 1:
 
==Summary==
 
==Summary==
The Applications that [[/var/stash/Applications.*****/Lowtide.app|Lowtide.app]] of the [[K66ap|Apple TV]] uses.
+
The Applications that [[/var/stash/Applications.*****/AppleTV.app|AppleTV.app]] of the [[K66ap|Apple TV]] uses.
 
===Creation of an App===
 
===Creation of an App===
 
At the moment you can create FRAppliances within {{wp|Xcode}} by using the headers that NitoTV posted. You cant assemble them using {{wp|Xcode}} but must use [[Wikipedia:make (software)|Make File]].
 
At the moment you can create FRAppliances within {{wp|Xcode}} by using the headers that NitoTV posted. You cant assemble them using {{wp|Xcode}} but must use [[Wikipedia:make (software)|Make File]].
Line 45: Line 45:
   
 
== Parents ==
 
== Parents ==
[[/|Root]]/[[/var|var]]/[[/var/stash|stash]]/[[/Applications|Applications.*****]]/[[/var/stash/Applications.*****/Lowtide.app|Lowtide.app]]
+
[[:/|Root]]/[[:/var|var]]/[[:/var/stash|stash]]/[[:/Applications|Applications.*****]]/[[:/var/stash/Applications.*****/AppleTV.app|AppleTV.app]]
   
Normally, this folder would be <tt>/Applications/Lowtide.app/Appliances</tt>, but because all of the other default Apple apps are in <tt>/var/stash/Applications.*****</tt>, it goes here. Please do not change it.
+
'''NOTE''': Normally, this folder would be <tt>/Applications/AppleTV.app/Appliances</tt>, but because all of the other default Apple apps are in <tt>[[:/var/stash/Applications.*****]]</tt>, it goes here.

Revision as of 23:48, 16 February 2011

Summary

The Applications that AppleTV.app of the Apple TV uses.

Creation of an App

At the moment you can create FRAppliances within Template:Wp by using the headers that NitoTV posted. You cant assemble them using Template:Wp but must use Make File.

GO_EASY_ON_ME=1
export SDKVERSION=4.0
FW_DEVICE_IP=AppleTV.local
include theos/makefiles/common.mk
BUNDLE_NAME = HW
HW_FILES = Classes/HWAppliance.mm Classes/HWBasicMenu.m
HW_INSTALL_PATH = /Applications/Lowtide.app/Appliances
HW_BUNDLE_EXTENSION = frappliance
HW_LDFLAGS = -undefined dynamic_lookup #-L$(FW_PROJECT_DIR) -lBackRow
include $(FW_MAKEDIR)/bundle.mk
after-install::
install.exec "killall -9 Lowtide"

and execute using build.sh

IP_ADDRESS=AppleTV.local
echo "Always clean up first!"
echo ""
make clean
echo "Making..."
echo ""
make
echo "Make Stage..."
echo ""
make stage
echo "Make Install..."
make install

Children

Files

(none)

Folders

Parents

Root/var/stash/Applications.*****/AppleTV.app

NOTE: Normally, this folder would be /Applications/AppleTV.app/Appliances, but because all of the other default Apple apps are in /var/stash/Applications.*****, it goes here.