iOS tweak for speaking notifications and other events using speech synthesiser.
Official website: http://se.k3a.me/
Developer & User Forums: http://forum.k3a.me
You need to have Xcode installed. The project uses theos makefiles (xcode project is there just for convenience and may not work at all). Read more about theos here: http://iphonedevwiki.net/index.php/Theos/Getting_Started.
It was tested and compiles fine with these versions:
- https://github.com/rpetrich/theos put into /theos
- https://github.com/rpetrich/iphoneheaders put into /theos/include
In order to complile it, set the correct theos symlink to your theos installation (or put theos to /theos and keep my simlink) and run: PATH="bin:$PATH" make package
There is also 'PATH="bin:$PATH" make package' test makefile rule but it won't work without setting your ~/.ssh/config on your mac (see bellow). I used it to automate package creation, installing the packge on the device and respringing the device. This is not needed though as you can install the package standard theos way or via 'dpkg -i path to deb' on the device.
For instructions how to copy files through scp over USB into your device, see this: http://iphonedevwiki.net/index.php/SSH_Over_USB
If you pan to use USB SSH connection, make sure to speed it up by:
- using SSH key for (root and mobile user) authentication (http://www.priyaontech.com/2012/01/ssh-into-your-jailbroken-idevice-without-a-password/)
- using ~/.ssh/config on your mac with a record like this one (last two lines will allow you switching iOS devices without hassle): Host ufoxy User mobile Port 2222 HostName localhost StrictHostKeyChecking no UserKnownHostsFile=/dev/null
If you have trouble compiling it, you can contact me and others at http://forum.k3a.me or simply create a github issue. I will try to help you and/or update this readme.