I am using Visual Studio 2012 to build this solution: https://github.com/xamarin/monodroid-samples/tree/master/AdMob
I edited the project file (AdMob.csproj) and removed the following lines:
<ItemGroup>
<InputJar Include="GoogleAdMobAdsSdk-6.0.1.jar">
<Link>Jars\GoogleAdMobAdsSdk-6.0.1.jar</Link>
</InputJar>
</ItemGroup>
Then I added GoogleAdMobAdsSdk-6.2.1.jar to the Jars folder and set Build Action as InputJar. After building there is this error for the AdMob project:
API analyzer failed with java exception. See verbose output for details. E:\src\monodroid-samples-master\AdMob\AdMob\JARTOXML
How to solve this "API analyzer failed with java exception"? Or maybe I should use GoogleAdMobAdsSdk-6.0.1.jar ?
Update: After building the solution in command line, I found the follwing error:
java.lang.TypeNotPresentException: Type com.google.ads.internal.state.AdState not present
Seems like this is a problem with 6.2.1. I guess I will have to stick with 6.0.1 at the moment.