I have Unity 3D Free with the Android add-on and the newest Android SDK.
When ever I run the Android build, it brings up the compiler bar then just drops out. Nothing happens. The Android SDK add-on is pointing at the SDK file on the computer.
I have Unity 3D Free with the Android add-on and the newest Android SDK.
When ever I run the Android build, it brings up the compiler bar then just drops out. Nothing happens. The Android SDK add-on is pointing at the SDK file on the computer.
It was some errors. I wish it would POP up those errors. Shove them in my face. That is what I get for trying to develop on my phone at work.
The problem was that I had a For loop that looked like
for(x=1; blah blah){}
when It needs to look like this for Android…
for(VAR x=1){}
Have you checked the Unity console and editor log for error messages?
– rutter