Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

AIR 16.0.0.272 geolocation not work on iOS

Explorer ,
Jan 21, 2015 Jan 21, 2015

Geolocation services not works at all on iOS devices if application compile using AIR SDK 16.0.0.272 for Windows.

While the release notes indicated: (fixed issues) Geolocation services are not working (Bug 3916071)

Geolocation service is allways muted on iOS 8.1.2.

There are no system dialog about Geolocation permission, as well as by using AIR SDK 16.0.0.250 beta

Is it a know issue?

TOPICS
Air beta
2.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Jan 22, 2015 Jan 22, 2015

Yes, using additional key-value it's work!

<key>NSLocationAlwaysUsageDescription</key>

<string>Sample description to allow geolocation always</string>

or

<key>NSLocationWhenInUseUsageDescription</key>

<string>Sample description to allow geolocation when application is in foreground</string>

Thank you!

Translate
New Here ,
Jan 21, 2015 Jan 21, 2015

I'm having the same issue here. Geolocation doesn't work with the most recent version of AIR despite the claim that this has been fixed.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jan 21, 2015 Jan 21, 2015

Hi,

Could you please follow the steps mentioned at Adobe AIR * iOS Settings and Geolocation - Adobe ActionScript® 3 (AS3 ) API Reference for Geolocation.

Please let us know if that does not work for you.

Thanks,

Adobe Air Team

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 22, 2015 Jan 22, 2015

Yes, using additional key-value it's work!

<key>NSLocationAlwaysUsageDescription</key>

<string>Sample description to allow geolocation always</string>

or

<key>NSLocationWhenInUseUsageDescription</key>

<string>Sample description to allow geolocation when application is in foreground</string>

Thank you!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 16, 2015 Mar 16, 2015

Do you know if there is a way to provide localized strings for NSLocationAlwaysUsageDescription and NSLocationWhenInUseUsageDescription? If not, I created a feature requests on Adobe's bugbase that you can vote Feature#3954108 - Ability to localize strings inside the iOS info plist

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 26, 2015 Jun 26, 2015

I'm facing the same problem... would be nice to add localisation in location key Info Additions. It's even a must have for multi languages apps.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jun 29, 2015 Jun 29, 2015
LATEST

Hi,

Thanks for reporting the issue. We have added this request in list of our backlog items. For tracking this issue in future please use ID 4013818.

Thanks,

Adobe Air Team

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 22, 2015 Jan 22, 2015

Oh, thank god. I was struggling to figure this out! Thanks!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Mar 22, 2015 Mar 22, 2015

for the life of me, i am trying to make it work with out any success. Can you help? this is my manifest

<iPhone>

    <Entitlements>

  <![CDATA[ <key>get-task-allow</key>

  <false/>

  <key>beta-reports-active</key>

  <true/> ]]>

  </Entitlements>

        <InfoAdditions><![CDATA[

  <key>UIDeviceFamily</key>

  <array>

  <string>1</string>

  <string>2</string>

  </array>

          <key>NSLocationAlwaysUsageDescription</key>

             <string>Sample description to allow geolocation always</string>

             <key>NSLocationWhenInUseUsageDescription</key>

             <string>Sample description to allow geolocation when application is in foreground</string>             

  ]]></InfoAdditions>

        <requestedDisplayResolution>high</requestedDisplayResolution>

    </iPhone>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 26, 2015 May 26, 2015

I solved the issue using local shared Object, May be it will help you

https://riteshnewal.wordpress.com/wp-admin/post.php?post=130&action=edit&postpost=v2

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines