πŸ’°Admob Setup

To setup Admob, please follow the link from firebase below

We're basically using the Rewarded Ads type inside the project and you can follow this guide to set it up for the project

Once you get your admob id, you can replace the variables inside the Constants.swift file with your own ad unit id:

struct Constants {
    static let GoogleAdsAppId = "your_admob_id"
    static let GoogleAdsAppUnitId = "your_admob_unit_id"
}

Last updated