This is a work in progress app that served two purposes
- An excuse to learn how to use j2objc to write an ios app
- A white-noise machine for my infant son
You can download this app for IOS devices. It is stupidly simple; white noise on <-> white noise off.
To build this app to run it for your self or just to see how the j2objc generated components and the hand-written XCode components fit together, checkout the repo. You will need to have a few things installed before you begin:
- Java 8+
- Maven 3+
- j2objc 1.2+
- XCode (Whatever's newest)
The first thing you need to do is configure where j2objc is unzipped. This will need to be changed in a few places
- pom.xml - You'll need to change the properties
j2objc
andj2objcc
- white-noise-ios/Settings.conf - You'll need to change
J2OBJC_HOME
Next you need to generate the objective c files. This is done with Maven:
mvn clean package
Now you should be able to open the associated XCode project and run it on any ios device.