Frequently asked questions

If you have a question and couldn’t find it here, just send us an email.

Frequently Asked Question

Compile Time Errors
  • I am getting some error about dex and method count, what is this?

    Earlier versions of the build system report this error as follows

    
                                    Conversion to Dalvik format failed:
    Unable to execute dex: method ID not in [0, 0xffff]: 65536
                                

    More recent versions of the Android build system display a different error which is;

    
    trouble writing output:
    Too many field references: 131000; max is 65536.
    You may try using --multi-dex option.
                                

    Both these error conditions display a common number: 65,536. This number is significant in that it represents the total number of references that can be invoked by the code within a single Dalvik Executable (DEX) bytecode file.

    You can find more information about this error in the following link

  • I am getting java.util.zip.ZipException: duplicate entry error what is this?

    Some of the ad network sdk's using 3rd party libraries. You may already using those librarires at your project. In that case there may be some duplications. To fix that problem you have to delete one of those libraries.

  • I got error message says leaked IntentReceiver com.facebook.ads.internal.DisplayAdController$c@cf9db8c that was originally registered here. Are you missing a call to unregisterReceiver()? in logcat. What is this?

    You may have missed to call destroy for each AdMostView in your activity onDestroy method.

  • Can we use google play service version higher than 10.0.1?

    Yes, our google play service version is just an example. You can use the version you have and it works fine with Admost SDK.