Update
Google has released the Google Analytics Services iOS SDK v3.03c, which by default disables the AdSupport.framework dependency.
Full text of the changes for version 3.0.03c (February 19, 2014): https://developers.google.com/analytics/devguides/collection/ios/changelog
Old tent
My problem was in Google Analytics and TestFlight.
For TestFlight, I just upgrade the library to version 2.2.1 ( https://www.testflightapp.com/sdk/ios/release_notes/2.2.1/ ).
But to update Google Analytics, I had to remove the -ObjC flag. But since I use Cocoapods to manage some of the third libraries, I could not just delete it. So I did the following:
1 - the update of libGoogleAnalytics.a to version 3.03a (February 5, 2014) began
2 - then also removed AdSupport.framework
3 - added "-force_load \" $ {PROJECT_DIR} /Source/Library/GoogleAnalyticsServicesiOS_3.03a "in the section" Purpose β Assembly Settings β Other Linker Flags "(Please note that in my GoogleAnalytics project it is inside / Source / Library / folder and you need to set up your own)
But since I cannot remove the ObjC flag, I was looking for how to use the -force_load flag with Cocoapods, then I found two useful links:
1 - https://github.com/CocoaPods/CocoaPods/issues/712
2 - http://www.deanmao.com/2012/12/31/linker-error-using-cocoapods/
To summarize, I changed the -ObjC flag to "-force_load $ (TARGET_BUILD_DIR) /libPods.a" also under "Target β Build Settings β Other Linker Flags"
But then again, when I tried to publish my application, I received an error message telling me that the compiler did not find libPods.a, so I went to "Target β Build Settings β Other Linker Flags β Release" and change this line $ ( TARGET_BUILD_DIR) for $ {BUILT_PRODUCTS_DIR}.
So, my other Linker flags have become similar to the image below. 
Hope to help someone.
Sorry for my English. =]