Git Product home page Git Product logo

extension-ironsource's Introduction

extension-ironsource's People

Contributors

agulev avatar britzl avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

extension-ironsource's Issues

Can't build Pangle for iOS

Use this game.project settings for ios:

applovin_ios = 0
charboost_ios = 0
fyber_ios = 0
facebook_ios = 0
hyprmx_ios = 0
inmobi_ios = 0
liftoff_ios = 0
maio_ios = 0
mintegral_ios = 0
mytarget_ios = 0
tapjoy_ios = 0
unityads_ios = 0
pangle_ios = 1

It can't be built with the following errors:
log.txt

Add extension name and version in confiig

Android:
ConfigFile.getConfigFile().setPluginData(pluginType, pluginVersion, pluginFrameworkVersion);

iOS:
[ISConfigurations getConfigurations].plugin=@""; // pluginType
[ISConfigurations getConfigurations].pluginVersion=@""; // pluginVersion
[ISConfigurations getConfigurations].pluginFrameworkVersion=@""; //pluginFrameworkVersion

pluginType - "Defold"
pluginVersion - The SDK version of Defold, wrapping iS Native SDK
pluginFrameworkVersion - The Defold engine version

Add iOS support

  • Main functions
  • Interstitial ADS
  • Rewarded ADS
  • Mediation Adapters

bidmachine_android and mytarget_android not builded for android

  • What went wrong:
    Execution failed for task ':downloadDependencies'.

Could not resolve all dependencies for configuration ':releaseRuntimeClasspath'.
Could not resolve io.bidmachine:ads.networks.gam:2.4.0.+.
Required by:
project : > io.bidmachine:ads:2.4.0
> Failed to list versions for io.bidmachine:ads.networks.gam.
> Unable to load Maven meta-data from https://artifactory.bidmachine.io/bidmachine/io/bidmachine/ads.networks.gam/maven-metadata.xml.
> org.xml.sax.SAXNotRecognizedException: Property 'http://javax.xml.XMLConstants/property/accessExternalSchema' is not recognized.
Could not resolve io.bidmachine:ads.networks.notsy:2.4.0.+.
Required by:
project : > io.bidmachine:ads:2.4.0
> Failed to list versions for io.bidmachine:ads.networks.notsy.
> Unable to load Maven meta-data from https://artifactory.bidmachine.io/bidmachine/io/bidmachine/ads.networks.notsy/maven-metadata.xml.
> org.xml.sax.SAXNotRecognizedException: Property 'http://javax.xml.XMLConstants/property/accessExternalSchema' is not recognized.
Could not resolve io.bidmachine:ads.networks.appodeal_gam:2.4.0.+.
Required by:
project : > io.bidmachine:ads:2.4.0
> Failed to list versions for io.bidmachine:ads.networks.appodeal_gam.
> Unable to load Maven meta-data from https://artifactory.bidmachine.io/bidmachine/io/bidmachine/ads.networks.appodeal_gam/maven-metadata.xml.
> org.xml.sax.SAXNotRecognizedException: Property 'http://javax.xml.XMLConstants/property/accessExternalSchema' is not recognized.
Could not resolve io.bidmachine:ads.networks.a4g:2.4.0.+.
Required by:
project : > io.bidmachine:ads:2.4.0
> Failed to list versions for io.bidmachine:ads.networks.a4g.
> Unable to load Maven meta-data from https://artifactory.bidmachine.io/bidmachine/io/bidmachine/ads.networks.a4g/maven-metadata.xml.
> org.xml.sax.SAXNotRecognizedException: Property 'http://javax.xml.XMLConstants/property/accessExternalSchema' is not recognized.
Could not resolve com.my.tracker:mytracker-sdk:[3.0.0,3.1.0).
Required by:
project : > com.my.target:mytarget-sdk:5.19.0
> Failed to list versions for com.my.tracker:mytracker-sdk.
> Unable to load Maven meta-data from https://repo.maven.apache.org/maven2/com/my/tracker/mytracker-sdk/maven-metadata.xml.
> org.xml.sax.SAXNotRecognizedException: Property 'http://javax.xml.XMLConstants/property/accessExternalSchema' is not recognized.

log.txt

Defold 1.8.0

set them to 0 project builded

bidmachine_android = 0
mytarget_android = 0

Rewarded ads doesn't post AD_AVAILABLE and AD_UNAVAILABLE events on IOS

On iOS the events ironsource.EVENT_AD_AVAILABLE and ironsource.EVENT_AD_UNAVAILABLE are not received. Other events from ironsource.MSG_REWARDED come through normally.

Meanwhile, the ads are loading and displaying fine, and function “is_rewarded_video_available()” is also works. On Android, everything works well.

Defold version: 1.6.2
Extension version: 0.7.0

Can't build from the editor

The extension is too big and I can't build it from the editor.
Always get:

'x86_64-ios' could not be built. Sdk version: '504de7800fa81847bfc2e26a21973899db9dd747'
Log: 'Internal Server Error'

But using bob with --use-async-build-server it works fine (really long, but works)

AdQuality SDK advanced configuration

AdQuality SDK has an optional step to provide advanced initialization:

  • User ID – Use your own user IDs, instead of the default IDs from Ad Quality
  • Test mode – Test your Ad Quality SDK integration (default is false)
  • Log level – Choose a log level to debug code issues (default is INFO)

iOS: https://developers.is.com/ironsource-mobile/ios/sdk-integration-guides/#step-3
Android: https://developers.is.com/ironsource-mobile/android/sdk-integration-guides/#step-3

adcolony_android Adapter - MISSING

[iron_source]
adcolony_android = 1

ironsource.validate_integration()

I --------------- AdColony --------------
E Adapter - MISSING
E >>>> AdColony - NOT VERIFIED

Crash on iOS 11.8

dyld: Library not loaded: @rpath/libswiftCore.dylib

it seems like cocoapods should take into account ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES

Add an ability to initialize SDK using specific AD UNIT

//TODO: add AD Units android.app.Activity, java.lang.String, com.ironsource.mediationsdk.sdk.InitializationListener, com.ironsource.mediationsdk.IronSource$AD_UNIT...

//Rewarded Video
IronSource.init(this, appKey, IronSource.AD_UNIT.REWARDED_VIDEO);
//Init Interstitial 
IronSource.init(this, appKey, IronSource.AD_UNIT.INTERSTITIAL); 
//Init Offerwall
IronSource.init(this, appKey, IronSource.AD_UNIT.OFFERWALL) 
//Init Banner
IronSource.init(this, appKey, IronSource.AD_UNIT.BANNER);

/**
*Ad Units should be in the type of IronSource.Ad_Unit.AdUnitName, example 
*/
IronSource.init(this, appKey, IronSource.AD_UNIT.OFFERWALL, IronSource.AD_UNIT.INTERSTITIAL, IronSource.AD_UNIT.REWARDED_VIDEO, IronSource.AD_UNIT.BANNER);

https://developers.is.com/ironsource-mobile/android/android-sdk/#step-5

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.