Skip to main content
Participant
December 7, 2011
Question

Launching another iOS AIR app from iOS AIR App

  • December 7, 2011
  • 1 reply
  • 2476 views

Hi

Ideally we would like to be able to launch another AIR iOS from our AIR iOS.  Is it possible to do this with AIR?  I understand you can do it natively.  We would also need to pass a few parameters: such as authentication ID and a URL.

Potentially we need to be able to do this in Android too.

Thanks

Ben

This topic has been closed for replies.

1 reply

December 7, 2011

Yes. you can have following chunk in your infoAdditions

<key>CFBundleURLTypes</key>

   <array>

    <dict>

     <key>CFBundleURLSchemes</key>

     <array>

      <string>appA</string>

     </array>

    </dict>

   </array>

then from another AIR iOS application you can call navigateToURL("appA://thisDataWillBeReceivedByAppA")

I have written an Article which lets AIR iOS applications implement Facebook Single Sign-On It uses the same techniques. You can follow http://www.saumitrabhave.com/2011/10/facebook-single-sign-on-for-air-ios.html for more details.

Thanks,

Saumitra