Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Mobility for Jira supports the AppConfig standard for Mobile Device Management. This is supported by several MDM systems such as Microsoft Intune, MobileIron, JAMF, AirWatch, etc. With this standard you can control some security features and push out settings to your Mobility for Jira users.

This will be supported with our iOS version 7.1 going forward.

Example configuration:

Code Block
<dict>
  <key>VERSION</key>
  <integer>1</integer>
  <key>ADD_ACCOUNT</key>
  <true/>
  <key>CAN_REMEMBER_CREDENTIALS</key>
  <true/>
  <key>REMEMBER_CREDENTIALS</key>
  <false/>
  <key>ACCOUNTS</key>
  <array>
    <dict>
      <key>UID</key>
      <string>account_1</string>
      <key>URL</key>
      <string>https://jira.yourorganization.com</string>
      <key>USERNAME</key>
      <string>{{UserPrincipalName}}</string>
      <key>REMEMBER_CREDENTIALS</key>
      <true/>
      <key>CAN_DELETE</key>
      <false/>
    </dict>
    <dict>
      <key>UID</key>
      <string>account_2</string>
      <key>URL</key>
      <string>https://jira.yourorganization.com</string>
      <key>AUTH_TYPE</key>
      <string>web</string>
      <key>REMEMBER_CREDENTIALS</key>
      <true/>
      <key>CAN_DELETE</key>
      <true/>
    </dict>
  </array>
</dict>

...