Version casi lista

This commit is contained in:
alexandrev-tibco
2026-02-17 13:34:02 +01:00
commit e593453abd
99 changed files with 10867 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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
}
}