Skip to content

Instantly share code, notes, and snippets.

@luizmarcus
Created May 1, 2020 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luizmarcus/44b23cdfbf276506b63318854622e7e0 to your computer and use it in GitHub Desktop.
Save luizmarcus/44b23cdfbf276506b63318854622e7e0 to your computer and use it in GitHub Desktop.
final bannerAdIdAndroid = "ca-app-pub-3940256099942544/6300978111";
final bannerAdIdIos = "ca-app-pub-3940256099942544/2934735716";
final intertstitialAdIdAndroid = "ca-app-pub-3940256099942544/1033173712";
final intertstitialAdIdIos = "ca-app-pub-3940256099942544/4411468910";
String getBannerId() => Platform.isIOS ? bannerAdIdIos : bannerAdIdAndroid;
String getInterstitialId() => Platform.isIOS ? intertstitialAdIdIos : intertstitialAdIdAndroid;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment