Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Fix failing submission tests for net8.0-xcode15 updates #55

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FSharpMacCoolApp/FSharpMacCoolApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSMinimumSystemVersion</key>
<string>10.11</string>
<string>10.15</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleInfoDictionaryVersion</key>
Expand Down
4 changes: 3 additions & 1 deletion FSharpMacCoolApp/dotnet/FSharpMacCoolApp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
<!--
// We test this because ? F# and notarization (it's not in the App Store [Connect])
-->
<TargetFramework>net6.0-macos</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-macos</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
<OutputType>Exe</OutputType>
<RootNamespace>FSharpMacCoolApp</RootNamespace>
Expand Down
4 changes: 2 additions & 2 deletions FSharpiOSCoolApp/FSharpiOSCoolApp/FSharpiOSCoolApp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<GenerateTailCalls>true</GenerateTailCalls>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<ConsolePause>false</ConsolePause>
<CodesignKey>Apple Distribution: Luis Aguilera (DPXCPAGVTZ)</CodesignKey>
Expand Down Expand Up @@ -66,7 +66,7 @@
<OutputPath>bin\iPhone\Debug</OutputPath>
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchFloat32>true</MtouchFloat32>
<ConsolePause>false</ConsolePause>
Expand Down
2 changes: 1 addition & 1 deletion FSharpiOSCoolApp/FSharpiOSCoolApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
<string>9.0</string>
<string>11.0</string>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
Expand Down
8 changes: 5 additions & 3 deletions FSharpiOSCoolApp/dotnet/FSharpiOSCoolApp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
<!--
// We test this because ? F# support
-->
<TargetFramework>net6.0-ios</TargetFramework>
<RuntimeIdentifiers>ios-arm64;ios-arm</RuntimeIdentifiers>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-ios</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RuntimeIdentifiers>ios-arm64</RuntimeIdentifiers>
<OutputType>Exe</OutputType>
<RootNamespace>FSharpiOSCoolApp</RootNamespace>
<AssemblyName>FSharpiOSCoolApp</AssemblyName>
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
<CodesignKey>Apple Distribution: Luis Aguilera (DPXCPAGVTZ)</CodesignKey>
<BuildIpa>true</BuildIpa>
<GenerateTailCalls>true</GenerateTailCalls>
Expand Down
2 changes: 1 addition & 1 deletion MacCoolApp/MacCoolApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>LSMinimumSystemVersion</key>
<string>10.10</string>
<string>10.15</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion MacCoolApp_DontLink/MacCoolApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSMinimumSystemVersion</key>
<string>10.10</string>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
<string>olegoid</string>
<key>NSMainNibFile</key>
Expand Down
4 changes: 3 additions & 1 deletion MacCoolApp_DontLink/dotnet/MacCoolApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
// We test this because ? the linker is disabled and all symbols are present in the binary
// actually because of QTKit deprecation we are forced to use "Link SDK" and an XML file that preserve (almost) everything else
-->
<TargetFramework>net6.0-macos</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-macos</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RuntimeIdentifiers>osx-arm64;osx-x64</RuntimeIdentifiers>
<OutputType>Exe</OutputType>
<RootNamespace>MacCoolApp</RootNamespace>
Expand Down
4 changes: 3 additions & 1 deletion MyCatalystApp/MyCatalystApp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-maccatalyst</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-maccatalyst</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputType>Exe</OutputType>
<MtouchLink>SdkOnly</MtouchLink>

Expand Down
4 changes: 3 additions & 1 deletion MyFatCatalystApp/MyFatCatalystApp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-maccatalyst</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-maccatalyst</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputType>Exe</OutputType>
<RuntimeIdentifiers>maccatalyst-arm64;maccatalyst-x64</RuntimeIdentifiers>
<MtouchLink>SdkOnly</MtouchLink>
Expand Down
4 changes: 3 additions & 1 deletion MyNotarizedCatalystApp/MyNotarizedCatalystApp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-maccatalyst</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-maccatalyst</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputType>Exe</OutputType>
<RuntimeIdentifier>maccatalyst-arm64</RuntimeIdentifier>

Expand Down
4 changes: 3 additions & 1 deletion MyUnlinkedCatalystApp/MyUnlinkedCatalystApp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-maccatalyst</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-maccatalyst</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputType>Exe</OutputType>
<MtouchLink>None</MtouchLink>

Expand Down
2 changes: 1 addition & 1 deletion ODRsTVOS/ODRsTVOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>9.2</string>
<string>11.0</string>
<key>UIDeviceFamily</key>
<array>
<integer>3</integer>
Expand Down
2 changes: 1 addition & 1 deletion ODRsTVOS_Extension/ODRsTVOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleIdentifier</key>
<string>com.xamarin.odr-tvos</string>
<key>MinimumOSVersion</key>
<string>9.2</string>
<string>11.0</string>
<key>UIDeviceFamily</key>
<array>
<integer>3</integer>
Expand Down
2 changes: 1 addition & 1 deletion ODRsTVOS_Extension/ODRsTVOSExt/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>MinimumOSVersion</key>
<string>10.2</string>
<string>11.0</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
10 changes: 7 additions & 3 deletions ODRsTVOS_Extension/dotnet/ODRsTVOS/ODRsTVOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
<!--
// We test this because ? the linker is disabled and all symbols are present in the binary
-->
<TargetFramework>net6.0-tvos</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-tvos</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RuntimeIdentifier>tvos-arm64</RuntimeIdentifier>
<OutputType>Exe</OutputType>
<RootNamespace>ODRsTVOS</RootNamespace>
<AssemblyName>ODRsTVOS</AssemblyName>
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>

<MtouchFloat32>true</MtouchFloat32>
<CodesignKey>Apple Distribution: Luis Aguilera (DPXCPAGVTZ)</CodesignKey>
Expand Down Expand Up @@ -108,7 +110,9 @@
</BundleResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ODRsTVOSExt\ODRsTVOSExt.csproj" />
<ProjectReference Include="..\ODRsTVOSExt\ODRsTVOSExt.csproj">
<IsAppExtension>true</IsAppExtension>
</ProjectReference>
</ItemGroup>
</Project>

6 changes: 4 additions & 2 deletions ODRsTVOS_Extension/dotnet/ODRsTVOSExt/ODRsTVOSExt.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
<!--
// We test this because ? the linker is disabled and all symbols are present in the binary
-->
<TargetFramework>net6.0-tvos</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-tvos</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RuntimeIdentifier>tvos-arm64</RuntimeIdentifier>
<RootNamespace>ODRsTVOSExt</RootNamespace>
<AssemblyName>ODRsTVOSExt</AssemblyName>
<IsAppExtension>true</IsAppExtension>
<SupportedOSPlatformVersion>10.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>

<MtouchFloat32>true</MtouchFloat32>
<CodesignKey>Apple Distribution: Luis Aguilera (DPXCPAGVTZ)</CodesignKey>
Expand Down
2 changes: 1 addition & 1 deletion SceneKitGame/SceneKitGame/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleIdentifier</key>
<string>com.xamarin.scenekit-tvos</string>
<key>MinimumOSVersion</key>
<string>9.1</string>
<string>11.0</string>
<key>UIDeviceFamily</key>
<array>
<integer>3</integer>
Expand Down
6 changes: 4 additions & 2 deletions SceneKitGame/dotnet/SceneKitGame.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-tvos</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-tvos</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RuntimeIdentifier>tvos-arm64</RuntimeIdentifier>
<OutputType>Exe</OutputType>
<RootNamespace>SceneKitGame</RootNamespace>
<AssemblyName>SceneKitGame</AssemblyName>
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>

<MtouchFloat32>true</MtouchFloat32>
<CodesignKey>Apple Distribution: Luis Aguilera (DPXCPAGVTZ)</CodesignKey>
Expand Down
2 changes: 1 addition & 1 deletion UICatalog/UICatalog/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<key>GCSupportsControllerUserInteraction</key>
<true/>
<key>MinimumOSVersion</key>
<string>9.0</string>
<string>11.0</string>
<key>UIDeviceFamily</key>
<array>
<integer>3</integer>
Expand Down
6 changes: 4 additions & 2 deletions UICatalog/dotnet/UICatalog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
<!--
// We test this because ? the linker is disabled and all symbols are present in the binary
-->
<TargetFramework>net6.0-tvos</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-tvos</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RuntimeIdentifier>tvos-arm64</RuntimeIdentifier>
<OutputType>Exe</OutputType>
<RootNamespace>UICatalog</RootNamespace>
<AssemblyName>UICatalog</AssemblyName>
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>

<MtouchFloat32>true</MtouchFloat32>
<CodesignKey>Apple Distribution: Luis Aguilera (DPXCPAGVTZ)</CodesignKey>
Expand Down
2 changes: 1 addition & 1 deletion WatchOS/MainApp.WatchApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>5.0</string>
<string>9.0</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
Expand Down
4 changes: 2 additions & 2 deletions WatchOS/MainApp.WatchApp/MainApp.WatchApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<MtouchEnableBitcode>true</MtouchEnableBitcode>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7k</MtouchArch>
<MtouchArch>ARM64_32</MtouchArch>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<IOSDebugOverWiFi>false</IOSDebugOverWiFi>
<MtouchVerbosity></MtouchVerbosity>
Expand Down Expand Up @@ -81,7 +81,7 @@
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<IOSDebuggerPort>28208</IOSDebuggerPort>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7k</MtouchArch>
<MtouchArch>ARM64_32</MtouchArch>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<IOSDebugOverWiFi>false</IOSDebugOverWiFi>
<MtouchVerbosity></MtouchVerbosity>
Expand Down
2 changes: 1 addition & 1 deletion WatchOS/MainApp.WatchAppExtension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>5.0</string>
<string>9.0</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
<MtouchEnableBitcode>true</MtouchEnableBitcode>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7k</MtouchArch>
<MtouchArch>ARM64_32</MtouchArch>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<IOSDebugOverWiFi>false</IOSDebugOverWiFi>
<MtouchVerbosity></MtouchVerbosity>
<CodesignProvision>WatchKit Catalog Watch App Extension</CodesignProvision>
<MtouchExtraArgs>--abi=armv7k+llvm,arm64_32+llvm</MtouchExtraArgs>
<MtouchExtraArgs>--abi=arm64_32+llvm</MtouchExtraArgs>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
<DebugType>pdbonly</DebugType>
Expand Down Expand Up @@ -82,7 +82,7 @@
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<IOSDebuggerPort>42332</IOSDebuggerPort>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7k</MtouchArch>
<MtouchArch>ARM64_32</MtouchArch>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<IOSDebugOverWiFi>false</IOSDebugOverWiFi>
<MtouchVerbosity></MtouchVerbosity>
Expand Down
2 changes: 1 addition & 1 deletion WatchOSIntents/intentsphone/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>MinimumOSVersion</key>
<string>10.3</string>
<string>11.0</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
4 changes: 2 additions & 2 deletions WatchOSIntents/intentsphone/intentsphone.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<CodesignProvision>Intents Sample - Distribution Profile</CodesignProvision>
</PropertyGroup>
Expand Down Expand Up @@ -76,7 +76,7 @@
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<IOSDebuggerPort>10001</IOSDebuggerPort>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<CodesignProvision></CodesignProvision>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion WatchOSIntents/intentsphoneUI/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>10.3</string>
<string>11.0</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
4 changes: 2 additions & 2 deletions WatchOSIntents/intentsphoneUI/intentsphoneUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<CodesignProvision>Intents Sample - Distribution Profile</CodesignProvision>
</PropertyGroup>
Expand Down Expand Up @@ -76,7 +76,7 @@
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<IOSDebuggerPort>10001</IOSDebuggerPort>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion WatchOSIntents/intentswatch/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>3.2</string>
<string>10.0</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
Loading