Hi,
We have tried to implement IronSource Ad. But while we try to create an APK file, we are facing the following error. We have used all latest ANE. I would appreciate it if you could point out where I made a mistake.

Used ANE :
com.distriqt.ironsource.AdQualitySDK
com.distriqt.IronSource
com.distriqt.playservices.Ads
com.distriqt.playservices.AdsIdentifier
com.distriqt.playservices.Base
com.jetbrains.kotlin
com.distriqt.Core
androidx.core
Action Script Code :
import com.distriqt.extension.ironsource.IronSource;
import com.distriqt.extension.ironsource.events.RewardedVideoAdEvent;
var IRONSRC_APP_KEY : String = "20eac4e0d";
if (IronSource.isSupported)
{
//message( "IronSource Version: " + IronSource.service.version );
//message( "IronSource Native Version: " + IronSource.instance.nativeVersion );23159580
IronSource.instance.init( IRONSRC_APP_KEY, [ IronSource.REWARDED_VIDEO ] );
IronSource.instance.addEventListener( RewardedVideoAdEvent.OPENED, onRewardedVideoAdOpened );
IronSource.instance.addEventListener( RewardedVideoAdEvent.CLOSED, onRewardedVideoAdClosed );
IronSource.instance.addEventListener( RewardedVideoAdEvent.AVAILABILITY_CHANGED, onRewardedVideoAvailabilityChanged );
IronSource.instance.addEventListener( RewardedVideoAdEvent.STARTED, onRewardedVideoAdStarted );
IronSource.instance.addEventListener( RewardedVideoAdEvent.ENDED, onRewardedVideoAdEnded );
IronSource.instance.addEventListener( RewardedVideoAdEvent.REWARDED, onRewardedVideoAdRewarded );
IronSource.instance.addEventListener( RewardedVideoAdEvent.SHOW_FAILED, onRewardedVideoAdShowFailed );
IronSource.instance.addEventListener( RewardedVideoAdEvent.CLICKED, onRewardedVideoAdClicked );
}
function stage_resizeHandler( event:Event ):void
{
//_text.width = stage.stageWidth;
//_text.height = stage.stageHeight - 100;
}
function mouseClickHandler( event:MouseEvent ):void
{
if (IronSource.instance.isRewardedVideoAvailable())
{
IronSource.instance.showRewardedVideo();
}
else
{
//message( "Rewarded Video not available" );
}
}
//
// EXTENSION HANDLERS
//
function onRewardedVideoAdShowFailed( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAdShowFailed" );
}
function onRewardedVideoAdOpened( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAdOpened" );
}
function onRewardedVideoAdClosed( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAdClosed" );
}
function onRewardedVideoAvailabilityChanged( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAvailabilityChanged: " + event.availability );
}
function onRewardedVideoAdStarted( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAdStarted" );
}
function onRewardedVideoAdEnded( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAdEnded" );
}
function onRewardedVideoAdRewarded( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAdRewarded" );
}
function onRewardedVideoAdClicked( event:RewardedVideoAdEvent ):void
{
//message( "onRewardedVideoAdClicked" );
}
Hi,
We have tried to implement IronSource Ad. But while we try to create an APK file, we are facing the following error. We have used all latest ANE. I would appreciate it if you could point out where I made a mistake.
Used ANE :
Action Script Code :