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

Commit

Permalink
[Firebase][CloudFirestore] Fixed protobuf issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SotoiGhost authored and SotoiGhost committed Nov 13, 2019
1 parent d2e55de commit b413eac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Xamarin creates and maintains Xamarin.iOS bindings for the Google APIs for iOS L
| [Xamarin.Firebase.iOS.AdMob][F.AdMob.Name] | [7.47.0.0][F.AdMob.Package] |
| [Xamarin.Firebase.iOS.Analytics][F.Analytics.Name] | [6.0.4.0][F.Analytics.Package] |
| [Xamarin.Firebase.iOS.Auth][F.Auth.Name] | [6.2.1.1][F.Auth.Package] |
| [Xamarin.Firebase.iOS.CloudFirestore][F.CloudFirestore.Name] | [1.4.2.0][F.CloudFirestore.Package] |
| [Xamarin.Firebase.iOS.CloudFirestore][F.CloudFirestore.Name] | [1.4.2.1][F.CloudFirestore.Package] |
| [Xamarin.Firebase.iOS.CloudMessaging][F.CloudMessaging.Name] | [4.1.1.1][F.CloudMessaging.Package] |
| [Xamarin.Firebase.iOS.Core][F.Core.Name] | [6.1.0.0][F.Core.Package] |
| [Xamarin.Firebase.iOS.Crashlytics][F.Crashlytics.Name] | [3.14.0.0][F.Crashlytics.Package] |
Expand Down Expand Up @@ -54,7 +54,7 @@ Here's a table that shows in which global version is located each component of F
| Firebase AdMob | **7.47.0.0** | **6.5.0** |
| Firebase Analytics | **6.0.4.0** | **6.5.0** |
| Firebase Auth | **6.2.1.1** | **6.5.0** |
| Firebase Cloud Firestore | **1.4.2.0** | **6.5.0** |
| Firebase Cloud Firestore | **1.4.2.1** | **6.5.0** |
| Firebase Cloud Messaging | **4.1.1.0** | **6.5.0** |
| Firebase Core | **6.1.0.0** | **6.5.0** |
| Firebase Database | **6.0.0.0** | **6.5.0** |
Expand Down
3 changes: 2 additions & 1 deletion components.cake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Artifact FIREBASE_AB_TESTING_ARTIFACT = new Artifact ("Firebase.ABT
Artifact FIREBASE_AD_MOB_ARTIFACT = new Artifact ("Firebase.AdMob", "7.47.0", "8.0", ComponentGroup.Firebase, csprojName: "AdMob");
Artifact FIREBASE_ANALYTICS_ARTIFACT = new Artifact ("Firebase.Analytics", "6.0.4", "8.0", ComponentGroup.Firebase, csprojName: "Analytics");
Artifact FIREBASE_AUTH_ARTIFACT = new Artifact ("Firebase.Auth", "6.2.1.1", "8.0", ComponentGroup.Firebase, csprojName: "Auth");
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "1.4.2", "8.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "1.4.2.1", "8.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.CloudMessaging", "4.1.1.1", "8.0", ComponentGroup.Firebase, csprojName: "CloudMessaging");
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "6.1.0", "8.0", ComponentGroup.Firebase, csprojName: "Core");
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "3.14.0", "8.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
Expand Down Expand Up @@ -112,6 +112,7 @@ void SetArtifactsPodSpecs ()
PodSpec.Create ("BoringSSL-GRPC", "0.0.3", frameworkSource: FrameworkSource.Pods, frameworkName: "openssl_grpc"),
PodSpec.Create ("gRPC-Core", "1.21.0", frameworkSource: FrameworkSource.Pods, frameworkName: "grpc"),
PodSpec.Create ("gRPC-C++", "0.0.9", frameworkSource: FrameworkSource.Pods, frameworkName: "grpcpp"),
PodSpec.Create ("Protobuf", "3.8.0", frameworkSource: FrameworkSource.Pods, canBeBuild: false),
};
FIREBASE_CLOUD_MESSAGING_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("Firebase", "6.5.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseMessaging", targetName: "FirebaseMessaging", subSpecs: new [] { "Messaging" }),
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/CloudFirestore/CloudFirestore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<RootNamespace>Firebase.CloudFirestore</RootNamespace>
<AssemblyName>Firebase.CloudFirestore</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.4.2</FileVersion>
<FileVersion>1.4.2.1</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -23,7 +23,7 @@
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=2030883</PackageProjectUrl>
<PackageLicenseUrl>https://go.microsoft.com/fwlink/?linkid=2030782</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>1.4.2</PackageVersion>
<PackageVersion>1.4.2.1</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit b413eac

Please sign in to comment.