Корпоративное распространение iOS - проблема с GPS - PullRequest
0 голосов
/ 18 января 2019

Я разработал приложение для своего сотрудника организации и распространил его, используя учетную запись программы Apple Enterprise.

Теперь в этом приложении есть функция для получения GPS-данных этого устройства.Он отлично работает на отладочной сборке, но когда я делаю сборку релиза с использованием корпоративного сертификата, он не работает.Даже не спрашивая разрешения GPS.

файл info.plist:

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
      <dict>
        <key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleDisplayName</key>
        <string>Neptune</string>
        <key>CFBundleExecutable</key>
        <string>${EXECUTABLE_NAME}</string>
        <key>CFBundleIcons</key>
        <dict/>
        <key>CFBundleIcons~ipad</key>
        <dict/>
        <key>CFBundleIdentifier</key>
        <string>com.neptune.neptunetimesheets</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundleName</key>
        <string>${PRODUCT_NAME}</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
        <string>2.0.0</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>2.0.0</string>
        <key>LSRequiresIPhoneOS</key>
        <true/>
        <key>NSMainNibFile</key>
        <string/>
        <key>NSMainNibFile~ipad</key>
        <string/>
        <key>UISupportedInterfaceOrientations</key>
        <array>
          <string>UIInterfaceOrientationPortrait</string>
          <string>UIInterfaceOrientationPortraitUpsideDown</string>
        </array>
        <key>UISupportedInterfaceOrientations~ipad</key>
        <array>
          <string>UIInterfaceOrientationPortrait</string>
          <string>UIInterfaceOrientationPortraitUpsideDown</string>
        </array>
        <key>NSLocationWhenInUseUsageDescription</key>
        <string>[App Name] would like to access your location when running and displayed.</string>
        <key>NSLocationAlwaysUsageDescription</key>
        <string>[App Name] would like to access your location when running and displayed.</string>
        <key>UIRequiresFullScreen</key>
        <true/>
        <key>NSAppTransportSecurity</key>
        <dict>
          <key>NSAllowsArbitraryLoads</key>
          <true/>
        </dict>
        <key>UIInterfaceOrientation</key>
        <array>
          <string>UIInterfaceOrientationPortrait</string>
        </array>
        <key>UILaunchStoryboardName</key>
        <string>CDVLaunchScreen</string>
      </dict>
    </plist>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...