If you are using Intellij 14 (which you should) you need to add the following to the end of your build.gradle before importing:
sourceSets { main { output.resourcesDir = output.classesDir } }
If you don't do that, your assets will not work. (Thanks to Cazzar for this solution)