flutter_ironsource_x

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

flutter ironsource x

flutter_Ironsource_x Ver. 2 #
Banner #

Interstitial/Rewarded Video #

Offerwall #


In the next version, the version format will be like this
xx.xx.xxxx
🠕 🠕 🠕
| | Publish Revision
| IronSource SDK Major Version
Dart Major Version

Example:
2.7.1
------------------------------
2 is Dart Major Version
7 is IronSource Major Version
1 is Publish Revision
copied to clipboard
IronSource Ads for Flutter #
Flutter plugin for showing IronSource ads (Android only)
If this package was helpful to you in delivering on your project or you just wanna to support this project, a cup of coffee would be highly appreciated ;-)
Please support me so I can continue to develop this Plugin. Please support me through Buy me a coffee
copied to clipboard

Progress #

✅ Interstitial
✅ Banner (Still experimenting)
✅ Offerwall
✅ Rewarded video

Using Examples #
Init #
void init() async {
var userId = await IronSource.getAdvertiserId();
await IronSource.validateIntegration();
await IronSource.setUserId(userId);
await IronSource.initialize(appKey: "appKey", listener: this,
gdprConsent: true, ccpaConsent: false);
rewardeVideoAvailable = await IronSource.isRewardedVideoAvailable();
offerwallAvailable = await IronSource.isOfferwallAvailable();
setState(() {});
}

copied to clipboard
By default gdprConsent and ccpaConsent are true
Interstitial #
IronSource.loadInterstitial();
copied to clipboard
void showInterstitial() async {
if (await IronSource.isInterstitialReady()) {
IronSource.showInterstitial();
} else {
print(
"Interstial is not ready. use 'Ironsource.loadInterstial' before showing it",
);
}
}
copied to clipboard
@override
void onInterstitialAdClicked() {
print("onInterstitialAdClicked");
}

@override
void onInterstitialAdClosed() {
print("onInterstitialAdClosed");
}

@override
void onInterstitialAdLoadFailed(IronSourceError error) {
print("onInterstitialAdLoadFailed : ${error.toString()}");
}

@override
void onInterstitialAdOpened() {
print("onInterstitialAdOpened");
setState(() {
interstitialReady = false;
});


}

@override
void onInterstitialAdReady() {
print("onInterstitialAdReady");
setState(() {
interstitialReady = true;
});

}

@override
void onInterstitialAdShowFailed(IronSourceError error) {

print("onInterstitialAdShowFailed : ${error.toString()}");
setState(() {
interstitialReady = false;
});
}

@override
void onInterstitialAdShowSucceeded() {
print("nInterstitialAdShowSucceeded");
copied to clipboard
Reward Video #
void showRewardedVideo() async {
if (await IronSource.isRewardedVideoAvailable()) {
IronSource.showRewardedVideol();
} else {
print("RewardedVideo not available");
}
}
copied to clipboard
@override
void onRewardedVideoAdClicked(Placement placement) {

print("onRewardedVideoAdClicked");
}

@override
void onRewardedVideoAdClosed() {
print("onRewardedVideoAdClosed");

}

@override
void onRewardedVideoAdEnded() {
print("onRewardedVideoAdEnded");
}

@override
void onRewardedVideoAdOpened() {
print("onRewardedVideoAdOpened");

}

@override
void onRewardedVideoAdRewarded(Placement placement) {

print("onRewardedVideoAdRewarded: ${placement.placementName}");
}

@override
void onRewardedVideoAdShowFailed(IronSourceError error) {

print("onRewardedVideoAdShowFailed : ${error.toString()}");
}

@override
void onRewardedVideoAdStarted() {
print("onRewardedVideoAdStarted");
}

@override
void onRewardedVideoAvailabilityChanged(bool available) {

print("onRewardedVideoAvailabilityChanged : $available");
setState(() {
rewardeVideoAvailable = available;
});
}
copied to clipboard
Banner #
IronSourceBannerAd(keepAlive: true, listener: BannerAdListener());
copied to clipboard
Banner Size Type: #

BANNER

IronSourceBannerAd(keepAlive: true, listener: BannerAdListener(), size: BannerSize.BANNER);
copied to clipboard

LARGE

IronSourceBannerAd(keepAlive: true, listener: BannerAdListener(), size: BannerSize.LARGE);
copied to clipboard

LEADERBOARD

IronSourceBannerAd(keepAlive: true, listener: BannerAdListener(), size: BannerSize.LEADERBOARD);
copied to clipboard

RECTANGLE

IronSourceBannerAd(keepAlive: true, listener: BannerAdListener(), size: BannerSize.RECTANGLE);
copied to clipboard

SMART

IronSourceBannerAd(keepAlive: true, listener: BannerAdListener(), size: BannerSize.SMART);
copied to clipboard

CUSTOM

IronSourceBannerAd(
keepAlive: true,
listener: BannerAdListener(),
size: BannerSize.BANNER,
size: BannerSize(
type: BannerSizeType.BANNER,
width: 400,
height: 50,
),
);
copied to clipboard
Banner Background Color #
IronSourceBannerAd(
keepAlive: true,
listener: BannerAdListener(),
size: BannerSize.BANNER,
backgroundColor: Colors.amber, //Background Color
);
copied to clipboard
class BannerAdListener extends IronSourceBannerListener {
@override
void onBannerAdClicked() {
print("onBannerAdClicked");
}

@override
void onBannerAdLeftApplication() {
print("onBannerAdLeftApplication");
}

@override
void onBannerAdLoadFailed(Map<String, dynamic> error) {
print("onBannerAdLoadFailed");

}

@override
void onBannerAdLoaded() {
print("onBannerAdLoaded");
}

@override
void onBannerAdScreenDismissed() {
print("onBannerAdScreenDismisse");
}

@override
void onBannerAdScreenPresented() {
print("onBannerAdScreenPresented");
}
}
copied to clipboard
OfferWall #

void showOfferwall() async {
if (await IronSource.isOfferwallAvailable()) {
IronSource.showOfferwall();
} else {
print("Offerwall not available");
}
}
copied to clipboard
@override
void onGetOfferwallCreditsFailed(IronSourceError error) {

print("onGetOfferwallCreditsFailed : ${error.toString()}");
}

@override
void onOfferwallAdCredited(OfferwallCredit reward) {

print("onOfferwallAdCredited : $reward");
}

@override
void onOfferwallAvailable(bool available) {
print("onOfferwallAvailable : $available");

setState(() {
offerwallAvailable = available;
});
}

@override
void onOfferwallClosed() {
print("onOfferwallClosed");
}

@override
void onOfferwallOpened() {
print("onOfferwallOpened");
}

@override
void onOfferwallShowFailed(IronSourceError error) {
print("onOfferwallShowFailed ${error.toString()}");
}
copied to clipboard
Update AndroidManifest.xml #
Manifest Permissions #
Add the following permissions to your AndroidManifest.xml file inside the manifest tag but outside the <application> tag:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
copied to clipboard
Manifest Activities #
Add the following activities inside the <application> tag in your AndroidManifest:
<activity
android:name="com.ironsource.sdk.controller.ControllerActivity"
android:configChanges="orientation|screenSize"
android:hardwareAccelerated="true" />
<activity
android:name="com.ironsource.sdk.controller.InterstitialActivity"
android:configChanges="orientation|screenSize"
android:hardwareAccelerated="true"
android:theme="@android:style/Theme.Translucent" />
<activity
android:name="com.ironsource.sdk.controller.OpenUrlActivity"
android:configChanges="orientation|screenSize"
android:hardwareAccelerated="true"
android:theme="@android:style/Theme.Translucent" />
copied to clipboard
Setting android/app/build.gradle: #
dependencies {
implementation 'com.ironsource.sdk:mediationsdk:7.2.1'
...
}
copied to clipboard
Change compileSdkVersion to minimum is 31
android {
compileSdkVersion 31
...
copied to clipboard
Change minSdkVersion to minimum is 21 and targetSdkkVersion to minimum is 31
defaultConfig {
...
minSdkVersion 21
targetSdkVersion 31
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
copied to clipboard
Setting android/build.gradle #
Change ext.kotlin_version to minimum is 1.6.10
buildscript {
ext.kotlin_version = '1.6.10'
...
copied to clipboard
add Google Play Services #
Add xmlns:tools="http://schemas.android.com/tools" on top for replace label.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.metamorfosis_labs.flutter_ironsource_x_example">
copied to clipboard
Add tools:replace="android:label" at the <application> tag
<application
tools:replace="android:label"
android:name="io.flutter.app.FlutterApplication"
android:label="flutter_ironsource_x_example"
android:networkSecurityConfig="@xml/network_security_config"
android:usesCleartextTraffic="true"
android:icon="@mipmap/ic_launcher">
copied to clipboard
Add the following inside the <application> tag in your AndroidManifest:
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>

<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
copied to clipboard
please read this to add google play service
Note #
Make sure each widget for the Ironsource Plugin is placed on a different widget from the main or screen widget, this is to avoid collisions with the banner widget if you want the banner widget to work. For more details on how to use please see the sample source code
copied to clipboard
Mediation #
follow this to add mediation sdks
Using this plugin #
see directory example
Visit IronSource website to know more
Contributing #
Thanks to @karnadii & @DiMiTriFrog
I will continue updating this library.
Support #
If this package was helpful to you in delivering on your project or you just wanna to support this project, a cup of coffee would be highly appreciated ;-)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.