AdMob and LibGDX Demo Project

Hey,

Thanks for taking your time of creating and sharing this example. I have cloned it but got into trouble when trying to build it. The problem is that in the IOSLauncher class there is this call within the createApplication method:

return new IOSApplication(new MyGdxGame(), config);

But MyGdxGame constructor is actually declared as follows:

public MyGdxGame(adDelegate ads)

There’s no constructor without arguments in that class, thus I’m getting this compiler error:

error: constructor MyGdxGame in class MyGdxGame cannot be applied to given types;
required: adDelegate
found: no arguments
reason: actual and formal argument lists differ in length