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

From The iPhone Wiki
Jump to: navigation, search
m (Updating.)
 
(14 intermediate revisions by 4 users not shown)
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 [[/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 [[Xcode]] by using the headers that NitoTV posted. You cant assemble them using [[Xcode]] but must use makefile.
+
At the moment you can create FRAppliances within [[Xcode]] by using the headers that NitoTV posted. You cant assemble them using Xcode but must use [[wikipedia:make (software)|make]].
 
 
GO_EASY_ON_ME=1
 
GO_EASY_ON_ME=1
 
export SDKVERSION=4.0
 
export SDKVERSION=4.0
Line 16: Line 15:
 
after-install::
 
after-install::
 
install.exec "killall -9 Lowtide"
 
install.exec "killall -9 Lowtide"
 
 
and execute using build.sh
 
and execute using build.sh
 
 
IP_ADDRESS=AppleTV.local
 
IP_ADDRESS=AppleTV.local
 
echo "Always clean up first!"
 
echo "Always clean up first!"
Line 48: Line 45:
   
 
== Parents ==
 
== Parents ==
  +
{{parent|Applications|AppleTV.app}}
[[/|Root]]/[[/var|var]]/[[/var/stash|stash]]/[[/Applciations|Applications.*****]]/[[/var/stash/Applications.*****/Lowtide.app|Lowtide.app]]
 
  +
  +
[[Category:Filesystem]]

Latest revision as of 08:08, 15 October 2015

Summary

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

Creation of an App

At the moment you can create FRAppliances within Xcode by using the headers that NitoTV posted. You cant assemble them using Xcode but must use make.

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)/Applications/AppleTV.app