Skip to content

Commit

Permalink
2.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
zayvius-dev committed May 23, 2022
1 parent bd21d73 commit 15c2fb9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
import com.google.android.ump.UserMessagingPlatform;

public class ZayviusAdsGDPR {
public static ConsentInformation consentInformation;
public static ConsentForm consentForm;
private static ConsentInformation consentInformation;
private static ConsentForm consentForm;

/*Admob*/
public static void Admob(Activity activity){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ public class ZayviusAdsNative {

/*Click Native*/
public static boolean Disable_Click_ONOFF=false;
public static boolean IntervalNativeMethod1=false;


public static void NativeAds(Activity activity, FrameLayout frameLayout,boolean disable_click, boolean size_small){
switch (ZayviusAdsMain.main_ad) {
Expand Down Expand Up @@ -102,6 +104,7 @@ public void onAdFailedToLoad(@NonNull LoadAdError loadAdError) {
@Override
public void onAdClicked() {
Disable_Click_ONOFF = true;
IntervalNativeMethod1 = true;
}
}).build();
AdRequest adRequest = new AdRequest.Builder().build();
Expand Down Expand Up @@ -143,6 +146,7 @@ public void onAdFailedToLoad(@NonNull LoadAdError loadAdError) {
@Override
public void onAdClicked() {
Disable_Click_ONOFF = true;
IntervalNativeMethod1 = true;
}
}).build();
AdRequest adRequest = new AdRequest.Builder().build();
Expand Down

0 comments on commit 15c2fb9

Please sign in to comment.