Files
FamilyMealPlanner/MealMood/Services/AdMobConfig.swift
T
alexandrev-tibco e593453abd Version casi lista
2026-02-17 13:34:02 +01:00

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
}
}