Skip to main content
This topic has been closed for replies.

13 replies

Known Participant
November 21, 2012

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.

Pahup
Adobe Employee
Adobe Employee
November 27, 2012

What version of AIR SDK you're using?

-Pahup

Known Participant
November 6, 2012

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

jrunrandy
Inspiring
November 6, 2012

@Peter T.R.

Please check your bug when you get a minute as  one of the Adobe developers has supplied a comment.

Regards,

Randy Nielsen

Senior Content and Community Manager

Adobe

Known Participant
November 6, 2012

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

October 29, 2012

If you are interested in getting background tasking on iOS/Android when using Stage3D, PLEASE VOTE FOR THE FEATURE REQUEST HERE:

https://bugbase.adobe.com/index.cfm?event=bug&id=3349232

Inspiring
August 2, 2012

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

jrunrandy
Inspiring
August 2, 2012

@chandu2240,

Please see my suggestions on http://forums.adobe.com/message/4593326#4593326

HTH,

Randy Nielsen

Senior Content and Community Manager

Adobe

Participant
April 10, 2012

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 ??

jrunrandy
Inspiring
April 10, 2012

Have you been able to create other iPhone apps? It could be that you need to upgrade to Flex SDK 4.5.

HTH

Randy Nielsen

Senior Content and Community Manager

Adobe Systems Incorporated

Participant
April 11, 2012

I upgraded to Flex SDK 4.6 but futile in desktop mac os. Is there anything need to be tried ??