Adblock Detector for Defold

Adblock Detector allows to determine if Adblock is running in the browser.

Example:

if adblockdetector then
    adblockdetector.detect(function (self, result)
        if result then
            print("Adblock detected")
        else
            print("Adblock not detected")
        end
    end)
end

More information on Github: https://github.com/potatojam/defold-adblock-detector

9 Likes

Also when you run a Build HTML there may be bugs in the current Defold version. This is because the editor does not understand URL parameters. This does not affect to the Bundle .

I created an issue about this:

Good! Thanks for sharing!

1 Like