In iOS/xCode/Swift, since I upgraded to the latest version of the Flurry iOS SDK I get "Flurry.setCrashReportingEnabled is depreciated
".
This is my code:
...
//start flurry
Flurry.setCrashReportingEnabled(true)
Flurry.startSession(environment.flurryAPIKey)
...
looking at the Flurry iOS SDK GitHub project I found "deprecated since 7.7.0, please use FlurrySessionBuilder in place of calling this API."
However I cannot find any info regarding this FlurrySessionBuilder usage in Swift. How to convert the above code to using this FlurrySessionBuilder to get rid of this depreciated warning?