I want to invoke my AIR application using custom URI scheme in MAC OS. I made the following entries in *-app.xml
.....
<id>CMS</id>
......
......
<iPhone>
<InfoAdditions>
<![CDATA[
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>sdscms</string>
</array>
<key>CFBundleURLName</key>
<string>CMS</string>
</dict>
</array>
]]>
</InfoAdditions>
</iPhone>
The info.plist of my AIR application is not getting updated with the above entries. I am using Flex SDK4.1. What else i have to do to invoke my AIR application from browser ??
We have created an iPhone compatible app in flex. i.e.,
<iPhone>
<InfoAdditions>
<![CDATA[
<key>UIDeviceFamily</key>
<array>
<string>1</string>
</array>
]]>
</InfoAdditions>
<requestedDisplayResolution>high</requestedDisplayResolution>
</iPhone>
we used the following icons
<icon>
<image29x29>assets/images/x_29px.png</image29x29>
<image48x48>assets/images/x_48px.png</image48x48>
<image57x57>assets/images/x_57px.png</image57x57>
<image72x72>assets/images/x_72px.png</image72x72>
<image114x114>assets/images/x_114px.png</image114x114>
<image128x128>assets/images/x_128px.png</image128x128>
<image512x512>assets/images/x_512x512.png</image512x512>
</icon>
After the installing the app it is showing the icon correctly, but the issue is blank icon is showing while installing.
Could you please help us here.
Thanks in Advance
@chandu2240,
Please see my suggestions on http://forums.adobe.com/message/4593326#4593326
HTH,
Randy Nielsen
Senior Content and Community Manager
Adobe
HI,
On my case we develop a communication app that need work in background and check each 15 secs messages from a chat server via simple http process, the app work fine on android and playbook but is useless on IOS.
We develop the app without know that the app can't work in background on IOS and now we have a major problem because who wants a communication apps that can't work in background?
I think this is a important feature that we take for granted in a commercial platform for a company like adobe.
I also open a feature request here :
https://bugbase.adobe.com/index.cfm?event=bug&id=3356130
Regards,
Peter
Hi jrunrandy,
I don't understand why the staff closed the feature request, the explanation that they send isn't the right approach, this option isn't work for a repetitive process in background, this is for a single process, we already check a few time ago and only allow to execute the refresh process one time.
If the staff close the feature request in this way this platform will be useless, we will never get a real development platform for a mobile solutions.
https://bugbase.adobe.com/index.cfm?event=bug&id=3356130
Regards,
Peter
I need to populate the CFBundleDisplayName in order to use an external tool that deploys mobile applications that requires this (IBM Worklight), but, the this isn't allowed (you get an error on the compile for iOS and Android when you try to add to InfoAdditions manually). How do I populate this CFBundleDisplayName value? Is it mapped to an existing config in the -app.xml required for Air/mobile? I opened up the Info.plist that's compliled into a mobile app the .ipa and it's not there.
CFBundleDisplayName tag is only added to the Info.plist file, if the name tag in the application.xml is localized.
In order to localize the app name, you would need to add <text> tag under <name> tag in app.xml.
For example:
<name>
<text xml:lang="en">English app</text>
<text xml:lang="fr">Fran€ais app</text>
<text xml:lang="de"> Methodenprüfung</text>
<text xml:lang="it">ItalianDebugger</text>
<text xml:lang="pt-BR">PortuguêsDebugger</text>
<text xml:lang="ru">РусскийDebugger</text>
<text xml:lang="es">Espa?olIME</text>
<text xml:lang="ja">日本語Debugger方法テスト</text>
<text xml:lang="ko">한국어AppDebugger</text>
<text xml:lang="zh-CN">中文Debugger测试</text>
<text xml:lang="zh-TW">中文Debugger方法測試</text>
<text xml:lang="cs">ČeštinaDebugger</text>
<text xml:lang="tr">TürkçeInpuyDebugger</text>
<text xml:lang="sv">SvenskaDebuggerApp</text>
<text xml:lang="nl">MethodeDebugger het testen</text>
<text xml:lang="pl">PolskiDebugger</text>
</name>
North America
Europe, Middle East and Africa
Asia Pacific