Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HZANDRO-669] Removed completely Fyber Adapter and Offerwall #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions Assets/Plugins/Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,25 +98,6 @@
android:name="com.facebook.ads.AudienceNetworkActivity"
android:configChanges="keyboardHidden|orientation|screenSize" />

<!-- Heyzap -->
<activity
android:name="com.heyzap.sdk.ads.FyberRewardedWrapperActivity"
android:configChanges="keyboardHidden|orientation|screenSize|smallestScreenSize"
android:hardwareAccelerated="true"
android:theme="@android:style/Theme.Translucent" />
<activity
android:name="com.heyzap.sdk.ads.FyberOfferWallWrapperActivity"
android:configChanges="keyboardHidden|orientation|screenSize|smallestScreenSize" />

<!-- Fyber -->
<activity
android:name="com.fyber.ads.interstitials.InterstitialActivity"
android:configChanges="screenSize|orientation"
android:theme="@android:style/Theme.Translucent" />
<meta-data
android:name="FYBVideoPlayerOptionCloseButtonDelay"
android:value="-1" />

<!-- HyprMX -->
<activity
android:name="com.hyprmx.android.sdk.activity.HyprMXOfferViewerActivity"
Expand Down
305 changes: 0 additions & 305 deletions Assets/Plugins/Heyzap/HZOfferwallAd.cs

This file was deleted.

22 changes: 0 additions & 22 deletions Assets/Plugins/Heyzap/HZShowOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,26 +86,4 @@ public string Position {
}
private string position = HZBannerShowOptions.DEFAULT_POSITION;
}

/// <summary>
/// A set of options that describes how to show an offerwall ad.
/// </summary>
public class HZOfferWallShowOptions : HZShowOptions {
private const bool DEFAULT_SHOULD_CLOSE_AFTER_FIRST_CLICK = true;

/// <summary>
/// When an incentivized video is completed, this string will be sent to your server via our server-to-server callbacks. Set it to anything you want to pass to your server regarding this incentivized video view (i.e.: a username, user ID, level name, etc.), or leave it empty if you don't need to use it / aren't using server callbacks for incentivized video.
/// More information about using this feature can be found at https://developers.heyzap.com/docs/advanced-publishing .
/// Guaranteed to be non-null - will be set to the default value if the setter is called with `null`.
/// </summary>
public bool ShouldCloseAfterFirstClick {
get {
return shouldCloseAfterFirstClick;
}
set {
shouldCloseAfterFirstClick = value;
}
}
private bool shouldCloseAfterFirstClick = HZOfferWallShowOptions.DEFAULT_SHOULD_CLOSE_AFTER_FIRST_CLICK;
}
}
1 change: 0 additions & 1 deletion Assets/Plugins/Heyzap/HeyzapAds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ public static void Start(string publisher_id, int options) {
HZVideoAd.InitReceiver();
HZIncentivizedAd.InitReceiver();
HZBannerAd.InitReceiver();
HZOfferWallAd.InitReceiver();
HZDemographics.InitReceiver();
}

Expand Down
Loading