AdMob Example Project - SwiftUI
Rewarded & Banner Ads in SwiftUI - Example Project
This Xcode project contains all the code to integrate Rewarded Ads from AdMob and Banner Ads into your own SwiftUI project.
It is build as an example project, so you can easily run and test it on your own.
Folder & Files explained
Utilities ▸ UserDefaultsKeys.swift
The UserDefaultsKeys.swift
file contains a key to read and write from the user defaults. This is used to read / write a boolean that indicates if the user wants to see personalized Ads.
AdMob ▸ RewardedAd.swift & BannerAd.swift
Both the swift files in the AdMob folder are the implementation of the two Ad types. Both files contain an AdId starting with "ca-app-pub-..."
. This Id should be replaced with your own ID once you want to distribute your App. For testing purposes you can leave the IDs as they are.
ContentView.swift
This file contains all the SwiftUI code, and shows how you can integrate both Ads into your own app. It also shows how you can show an error message if for example no rewarded Ad is available yet.
AdMobExampleAppApp.swift
In this file the Mobile Ads SDK is initialized. Here you can add a function to run when it was initialized correctly.
README.md
Explanation of the project, troubleshooting and information on how to integrate it into your own project.
For a detailed Tutorial on how to setup Ad Mob in Xcode 13, check out my Medium Article.
You'll get a fully functional XCode project, with example code, on how to integrate Rewarded & Banner Ads into your SwiftUI project.