我正在使用Xamarin Forms PCL项目开发一个应用程序 . 对于我在info.plist文件中的IOS项目,我将“8.0”设置为最小的ios版本 . 我创建了一个ad-hoc ipa文件,然后我在我的ipad设备上安装了应用程序,该设备在ios 9.1上运行但是当我尝试在ios mini上运行我的应用程序时运行在ios 10.1上,应用程序将立即从设备中删除它的安装完成 . 有兼容性问题吗?

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>UIDeviceFamily</key>
    <array>
        <integer>2</integer>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>MinimumOSVersion</key>
    <string>8.0</string>
    <key>CFBundleDisplayName</key>
    <string>XYZ</string>
    <key>CFBundleIdentifier</key>
    <string>com.yourcompany.FISE</string>
    <key>CFBundleVersion</key>
    <string>1.0</string>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>CFBundleShortVersionString</key>
    <string></string>
    <key>UIMainStoryboardFile</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile~ipad</key>
    <string>LaunchScreen</string>
  <key>NSAppTransportSecurity</key>
  <dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
  </dict>
</dict>
</plist>