15 lines
493 B
Swift
15 lines
493 B
Swift
enum AdMobConfig {
|
|
static let appId = "ca-app-pub-1549720748100858~9985112590"
|
|
static let bannerHomeUnitId = "ca-app-pub-1549720748100858/7693991173"
|
|
static let testBannerUnitId = "ca-app-pub-3940256099942544/2435281174"
|
|
|
|
static var resolvedBannerHomeUnitId: String {
|
|
#if DEBUG
|
|
// Always use Google's official test unit while debugging (simulator and device).
|
|
return testBannerUnitId
|
|
#else
|
|
return bannerHomeUnitId
|
|
#endif
|
|
}
|
|
}
|