I have an app that requires a Login. We launched 10 days ago.
The problem is: itunes connect says we have 40 downloads in total, and at the same time Flurry identifies 70+ new users.
This is how I have setup Flurry in the AppDelegate:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
Flurry.startSession("XXXXXXXX")
if let userEmail = email{
// user logged with our login
println("User logged via ff.")
Flurry.setUserID(userEmail as String)
}else if let userID = id{
// user logged with Facebook
println("User logged with facebook.")
Flurry.setUserID(userID as String)
}else{
// user not logged
}
}