How to implement Google Admob AppOpen Ads in your android app

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • Admob Tutorial: AppOpen Ads
    Join us on telegram: t.me/eugineapps
    Website: www.euginetech...
    Eugine Tech Channel Provides tutorials about pro computer use, internet tricks, blogging tips and tricks, earning tricks, and many more related to technology all over the world.
    Android Studio Tutorials
    Blogger Tutorials
    WordPress Tutorials
    Coding / Programming Tutorials
    Android Tutorials
    #admobtutorial

Комментарии • 19

  • @r.9589
    @r.9589 Год назад +1

    Great video my friend

  • @AhmedAbdRapoA
    @AhmedAbdRapoA Год назад +1

    Thank You man, Great video

  • @jimmyproton4638
    @jimmyproton4638 10 месяцев назад

    This helped me a lot thank you very much !

  • @tech-channel5276
    @tech-channel5276 Год назад

    Awesome Bro! Thanks

  • @learnwithnoxivu
    @learnwithnoxivu Год назад

    Awesome Bro! Thanks, Keep it up!

  • @user-cl1zm4pt7c
    @user-cl1zm4pt7c 11 месяцев назад

    Thanks bro

  • @abdouyami6132
    @abdouyami6132 Год назад +2

    how to show the ad every time the user return to app ? thanks

    • @euginetech
      @euginetech  Год назад

      The ad is loaded and shown automatically every time the user returns

  • @rolyrafaelrashuamanygnacio2899

    HELLO GOOD VIDEO, I ACHIEVED the ad implementation but it only showed once
    Then the open ads no longer load, what is this due to?

    • @euginetech
      @euginetech  Год назад

      Are you using real or test ads

  • @technicalview3256
    @technicalview3256 Год назад

    Brother first time App open ad not load
    if app close and reopen then ad load
    what is problem >????
    any solution ?

  • @chorkaniitv3386
    @chorkaniitv3386 7 месяцев назад

    ProcessLifecycleOwner refused to import class after I types it still didnt work

    • @euginetech
      @euginetech  6 месяцев назад

      You should have implemented the SDK first

  • @pexigno
    @pexigno Год назад +1

    Thanks for your tutorial. I received an error on
    def lifecycle_version = "2.3.1" (unresolved reference: def) using AS Giraffe
    Any idea?

  • @Aina-ud8pk
    @Aina-ud8pk Год назад

    If your testing with ads dont forget to replace your onCreate to this,
    public void onCreate() {
    super.onCreate();
    MobileAds.initialize(
    this,
    new OnInitializationCompleteListener() {
    @Override
    public void onInitializationComplete(InitializationStatus initializationStatus) {
    }
    });
    RequestConfiguration requestConfiguration = new RequestConfiguration.Builder()
    .setTestDeviceIds(Arrays.asList("06D38DE3D7E15C57F788F1FA0D164550"))
    .build();
    MobileAds.setRequestConfiguration(requestConfiguration);
    ProcessLifecycleOwner.get().getLifecycle().addObserver(this);
    appOpenAdManager = new AppOpenAdManager(this);
    }

    • @euginetech
      @euginetech  Год назад +1

      Can also set your device as a test device in admob and do as usual