how to integrate flurry in ios using swift language

后端 未结 4 1606
走了就别回头了
走了就别回头了 2021-01-18 10:32

I want to integrate flurry in ios using swift language. I added the flurry sdk\'s two files : flurrylib.a and flurry.h and then entered my api key in project TestProject4-Br

4条回答
  •  心在旅途
    2021-01-18 10:55

    Flurry Integration using Pods in Swift

    You need to import Flurry SDK as Follows

    import Flurry_iOS_SDK
    
     func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
             Flurry.startSession("YOUR_API_KEY")
             Flurry.logEvent("Started Application")
        }
    

提交回复
热议问题