Linking ios Libreary issues

I am currently working on abode air for making an app for ios.
I am trying to add Tapjoy and it requires two framework MediaPlayer.framework and CCTelephoneNetwork.framework
i have added them in my xcode project in build phases -> link binary with libraries
also i have tried platform options with -F full path
it creates .ane file but when i use it it gives me this error
<platform xmlns="http://ns.adobe.com/air/extension/3.1">
<sdkVersion>5.1</sdkVersion>
<linkerOptions>
<option>-framework Foundation</option>
<option>-framework UIKit</option>
<option>-framework QuartzCore</option>
<option>-framework CoreGraphics</option>
<option>-F /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk/System/Library/Frameworks</option>
<option>-framework MediaPlayer</option>
<option>-framework CoreTelephony</option>
</linkerOptions>
</platform>
also tired to use the platform options thing but still i am getting the above error.
Please let me know what i am doing wrong
i have been using native extensions for ios for a while and created few of them that are working fine but just this one is giving me this issue i am not able to figure it out
any help would be appreciated.