Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.