Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit cfd2583

Browse files
author
SotoiGhost
committed
[Firebase][DynamicLinks] Updated to version 4.0.7 (a.k.a 6.20.0)
1 parent abcc7db commit cfd2583

File tree

5 files changed

+11
-28
lines changed

5 files changed

+11
-28
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Xamarin creates and maintains Xamarin.iOS bindings for the Google APIs for iOS L
1515
| [Xamarin.Firebase.iOS.Core][F.Core.Name] | [6.6.4.0][F.Core.Package] |
1616
| [Xamarin.Firebase.iOS.Crashlytics][F.Crashlytics.Name] | [3.14.0.4][F.Crashlytics.Package] |
1717
| [Xamarin.Firebase.iOS.Database][F.Database.Name] | [6.1.4.0][F.Database.Package] |
18-
| [Xamarin.Firebase.iOS.DynamicLinks][F.DynamicLinks.Name] | [4.0.1.3][F.DynamicLinks.Package] |
18+
| [Xamarin.Firebase.iOS.DynamicLinks][F.DynamicLinks.Name] | [4.0.7.0][F.DynamicLinks.Package] |
1919
| [Xamarin.Firebase.iOS.InstanceID][F.InstanceID.Name] | [4.3.2.0][F.InstanceID.Package] |
2020
| [Xamarin.Firebase.iOS.MLKit][F.MLKit.Name] | [0.13.0.4][F.MLKit.Package] |
2121
| [Xamarin.Firebase.iOS.MLKit.Common][F.MLKit.Common.Name] | [0.13.0.3][F.MLKit.Common.Package] |
@@ -58,7 +58,7 @@ Here's a table that shows in which global version is located each component of F
5858
| Firebase Cloud Messaging | **4.3.0.0** | **6.20.0** |
5959
| Firebase Core | **6.6.4.0** | **6.20.0** |
6060
| Firebase Database | **6.1.4.0** | **6.20.0** |
61-
| Firebase Dynamic Links | **4.0.1.3** | **6.5.0** |
61+
| Firebase Dynamic Links | **4.0.7.0** | **6.20.0** |
6262
| Firebase Instance ID | **4.3.2.0** | **6.20.0** |
6363
| Firebase MLKit | **0.13.0.4** | **5.13.0* |
6464
| Firebase MLKit Common | **0.13.0.3** | **5.13.0* |

components.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.Clo
88
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "6.6.4", "8.0", ComponentGroup.Firebase, csprojName: "Core");
99
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "3.14.0.4", "8.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
1010
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "6.1.4", "8.0", ComponentGroup.Firebase, csprojName: "Database");
11-
Artifact FIREBASE_DYNAMIC_LINKS_ARTIFACT = new Artifact ("Firebase.DynamicLinks", "4.0.1.3", "8.0", ComponentGroup.Firebase, csprojName: "DynamicLinks");
11+
Artifact FIREBASE_DYNAMIC_LINKS_ARTIFACT = new Artifact ("Firebase.DynamicLinks", "4.0.7", "8.0", ComponentGroup.Firebase, csprojName: "DynamicLinks");
1212
Artifact FIREBASE_INSTANCE_ID_ARTIFACT = new Artifact ("Firebase.InstanceID", "4.3.2", "8.0", ComponentGroup.Firebase, csprojName: "InstanceID");
1313
Artifact FIREBASE_MLKIT_ARTIFACT = new Artifact ("Firebase.MLKit", "0.13.0.4", "9.0", ComponentGroup.Firebase, csprojName: "MLKit");
1414
Artifact FIREBASE_MLKIT_COMMON_ARTIFACT = new Artifact ("Firebase.MLKit.Common", "0.13.0.3", "9.0", ComponentGroup.Firebase, csprojName: "MLKit.Common");
@@ -142,7 +142,7 @@ void SetArtifactsPodSpecs ()
142142
PodSpec.Create ("Firebase", "6.20.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseDatabase", targetName: "FirebaseDatabase", subSpecs: new [] { "Database" })
143143
};
144144
FIREBASE_DYNAMIC_LINKS_ARTIFACT.PodSpecs = new [] {
145-
PodSpec.Create ("Firebase", "6.5.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseDynamicLinks", targetName: "FirebaseDynamicLinks", subSpecs: new [] { "DynamicLinks" })
145+
PodSpec.Create ("Firebase", "6.20.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseDynamicLinks", targetName: "FirebaseDynamicLinks", subSpecs: new [] { "DynamicLinks" })
146146
};
147147
FIREBASE_INSTANCE_ID_ARTIFACT.PodSpecs = new [] {
148148
PodSpec.Create ("FirebaseInstanceID", "4.3.2", frameworkSource: FrameworkSource.Pods),

samples/Firebase/DynamicLinks/DynamicLinksSample/DynamicLinksSample.csproj

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,6 @@
131131
</Compile>
132132
</ItemGroup>
133133
<ItemGroup>
134-
<ProjectReference Include="..\..\..\..\source\Firebase\Analytics\Analytics.csproj">
135-
<Project>{25783B8D-1423-4CC2-B629-7E7F36A1CF4B}</Project>
136-
<Name>Analytics</Name>
137-
</ProjectReference>
138134
<ProjectReference Include="..\..\..\..\source\Firebase\Core\Core.csproj">
139135
<Project>{9335A59B-3B54-4ED5-8201-B68CFD05CAFB}</Project>
140136
<Name>Core</Name>
@@ -143,18 +139,13 @@
143139
<Project>{4D102D0B-59D7-4902-913E-85CAA0DFE8A3}</Project>
144140
<Name>DynamicLinks</Name>
145141
</ProjectReference>
146-
<ProjectReference Include="..\..\..\..\source\Firebase\InstanceID\InstanceID.csproj">
147-
<Project>{754D8F56-C3DB-4E33-91D5-45445AB286EF}</Project>
148-
<Name>InstanceID</Name>
149-
</ProjectReference>
150142
</ItemGroup>
151143
<ItemGroup>
152144
<BundleResource Include="GoogleService-Info.plist" />
153145
<BundleResource Include="Resources\FirebaseLogo.png" />
154146
<BundleResource Include="Resources\XamarinLogo.png" />
155147
</ItemGroup>
156148
<Import Project="$(MSBuildThisFileDirectory)..\..\..\..\source\Firebase\Core\Core.targets" />
157-
<Import Project="$(MSBuildThisFileDirectory)..\..\..\..\source\Firebase\Analytics\Analytics.targets" />
158149
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
159150
<Import Project="..\..\..\..\packages\Xamarin.Build.Download.0.10.0\build\Xamarin.Build.Download.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Build.Download.0.10.0\build\Xamarin.Build.Download.targets')" />
160151
</Project>

source/Firebase/DynamicLinks/DynamicLinks.csproj

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<RootNamespace>Firebase.DynamicLinks</RootNamespace>
77
<AssemblyName>Firebase.DynamicLinks</AssemblyName>
88
<AssemblyVersion>1.0.0.0</AssemblyVersion>
9-
<FileVersion>4.0.1.3</FileVersion>
9+
<FileVersion>4.0.7</FileVersion>
1010
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
1111
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1212
</PropertyGroup>
@@ -23,7 +23,7 @@
2323
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=865537</PackageProjectUrl>
2424
<PackageLicenseFile>License.md</PackageLicenseFile>
2525
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
26-
<PackageVersion>4.0.1.3</PackageVersion>
26+
<PackageVersion>4.0.7</PackageVersion>
2727
</PropertyGroup>
2828

2929
<ItemGroup>
@@ -76,12 +76,4 @@
7676
</ItemGroup>
7777

7878
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
79-
80-
<!-- We are embedding a framework using NativeReference tag but, on Windows with .NET Core project,
81-
this tags means another thing. On windows, if a NativeReference exists it creates a file named
82-
Native.$(AssemblyName).manifest which on macOS is not being generated. This is just to satisfy
83-
the MSBuild packing process as it's looking for it. It seems not to be packed in the end. -->
84-
<Target Name="_TouchNativeManifestWorkaround" BeforeTargets="GenerateNuspec" Condition="!Exists('$(OutputPath)$(TargetFrameworks)\Native.$(AssemblyName).manifest')">
85-
<Touch Files="$(OutputPath)$(TargetFrameworks)\Native.$(AssemblyName).manifest" AlwaysCreate="True" />
86-
</Target>
8779
</Project>

source/Firebase/DynamicLinks/External-Dependency-Info.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
22
Do not translate or localize
33

4-
Xamarin Components for Firebase APIs Core iOS Library incorporates third party
5-
material from the projects listed below. The original copyright notice and
6-
the license under which Microsoft received such third party material are set
7-
forth below. Microsoft reserves all other rights not expressly granted,
8-
whether by implication, estoppel or otherwise.
4+
Xamarin Components for Firebase APIs Dynamic Links iOS Library incorporates
5+
third party material from the projects listed below. The original copyright
6+
notice and the license under which Microsoft received such third party material
7+
are set forth below. Microsoft reserves all other rights not expressly
8+
granted, whether by implication, estoppel or otherwise.
99

1010
########################################
1111
# Firebase iOS SDK

0 commit comments

Comments
 (0)