It is a verry important topic About Admob

0 favourites
  • 1 posts
From the Asset Store
AdMob Plus PRO
$12.99 USD
[ Support C3 Build service ] Native Ad, App Open Ad, Banner Ad, Interstitial Ad, Rewarded Interstitial Ad, Rewarded Ad.
  • I have recive a mail from admob (google) new cookie law for EU!

    But how to add this code in our games?

    Where to paste and how we dont have a "MainActivity" whern we expoet to intel sdk.

    The code is for android:

    // This code works on Android API level 1 (Android 1.0) and up.
    // Tested on the latest (at the moment) API level 19 (Android 4.4 KitKat).
    // In the main activity of your app:
    
    public class MainActivity extends Activity 
    
      (...)
    
      @Override
      public void onStart() {
        super.onStart();
        final SharedPreferences settings =
            getSharedPreferences("localPreferences", MODE_PRIVATE);
        if (settings.getBoolean("isFirstRun", true)) {
          new AlertDialog.Builder(this)
            .setTitle("Cookies")
            .setMessage("Your message for visitors here")
            .setNeutralButton("Close message", new OnClickListener() {
              @Override
              public void onClick(DialogInterface dialog, int which) 
                settings.edit().putBoolean("isFirstRun", false).commit();
              }
            }).show();
        }
      }
    }[/code:3tcp4004]
    
    And for Ios
    
    [code:3tcp4004]// This code will work in iOS 2 and up
    // (spoiler: you're not going to need anything below iOS 6).
    // Tested in iOS 7 
    // In your app's UIApplicationDelegate:
    
    [ul]
    	[li](BOOL)application:(UIApplication *)application[/li]
    [/ul]    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
      (...)
      NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
      if (![defaults boolForKey:@"termsAccepted"]) 
        NSString *message =
          @"Your message for visitors here";
        UIAlertView *alert =
          [[UIAlertView alloc] initWithTitle:@"Cookies"
                                     message:message
                                    delegate:self
                           cancelButtonTitle:nil
                           otherButtonTitles:@"Close message", nil];
        [alert show];
      }
    }
    
    [/code:3tcp4004]
    I think it is a lot of people having trouble with this.
    And yes me too .
    Thank's
  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)