This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// If you want to do something related to analytics in your app , then you should work in this file. | |
class AnalyticsService: NSObject, UIApplicationDelegate { | |
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { | |
#if ALPHA | |
//register with one id | |
#else | |
//Register with another one | |
#endif | |
//Analytics manager starttracking |
OlderNewer