I was just trying to use Robotium in an Android JUnit Test, but the Testing always fails with an error:
java.lang.NoClassDefFoundError: com.jayway.android.robotium.s
Had the same issue on SDK 17. Adding the robotium jar to lib and exporting helped. Also had to change the deprecated super call in the constructor from super(String,Class) to super(Class) to make it work.