Hi Jules,
I've just started to play around with Juce and find it an amazing tool. Congrats on this fantastic piece of work !
Just FYI I have compiled the Hello World demo (first things first...), and found that it is using deprecated type ClipboardManager.
At least this is what Eclipse tells me...
I am using Eclipse Platform 4.2.1, with ADT 22.0.5 and NDK r9d (64-bit) under Mac OSX 10.9.2.
I also had to modify AndroidManifest.xml to reflect more recent Android platforms and manually add icon files ("ic_launcher.png" see below; couldn't find a way to add them in IntroJucer, only choice is "<none>") in the res folder:
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="19"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:allowBackup="false">
For some reason I had to quit Eclipse and restart it in order to be able to link and upload the app onto a connected Samsung phone and then finally managed to launch the app on the phone. Launching the app on the mac was more straightforward...
Just wanted to share the info in case it helps you or someone else.
Thanks again for your outstanding work.
Alan.
P.S. I should probably have created separate topics for the various points above. Sorry about that...