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

Commit

Permalink
[Firebase][InAppMessaging] Fixed InAppMessagingDisplayMessage symbol …
Browse files Browse the repository at this point in the history
…name

* This fixes #398
  • Loading branch information
SotoiGhost committed Apr 30, 2020
1 parent df7afd1 commit 9f3cabf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Xamarin creates and maintains Xamarin.iOS bindings for the Google APIs for iOS L
| [Xamarin.Firebase.iOS.Crashlytics][F.Crashlytics.Name] | [4.0.0-beta.7][F.Crashlytics.Package] |
| [Xamarin.Firebase.iOS.Database][F.Database.Name] | [6.1.4.0][F.Database.Package] |
| [Xamarin.Firebase.iOS.DynamicLinks][F.DynamicLinks.Name] | [4.0.7.0][F.DynamicLinks.Package] |
| [Xamarin.Firebase.iOS.InAppMessaging][F.InAppMessaging.Name] | [0.19.2.0][F.InAppMessaging.Package] |
| [Xamarin.Firebase.iOS.InAppMessaging][F.InAppMessaging.Name] | [0.19.2.1][F.InAppMessaging.Package] |
| [Xamarin.Firebase.iOS.Installations][F.Installations.Name] | [1.1.1.0][F.Installations.Package] |
| [Xamarin.Firebase.iOS.InstanceID][F.InstanceID.Name] | [4.3.3.0][F.InstanceID.Package] |
| [Xamarin.Firebase.iOS.MLKit][F.MLKit.Name] | [0.19.0.0][F.MLKit.Package] |
Expand Down Expand Up @@ -66,7 +66,7 @@ Here's a table that shows in which global version is located each component of F
| Firebase Crashlytics | **4.0.0-beta.7** | **6.22.0** |
| Firebase Database | **6.1.4.0** | **6.22.0** |
| Firebase Dynamic Links | **4.0.8.0** | **6.22.0** |
| Firebase In App Messaging | **0.19.2.0** | **6.22.0** |
| Firebase In App Messaging | **0.19.2.1** | **6.22.0** |
| Firebase Installations | **1.1.1.0** | **6.22.0** |
| Firebase Instance ID | **4.3.3.0** | **6.22.0** |
| Firebase MLKit | **0.19.0.0** | **6.22.0** |
Expand Down
2 changes: 1 addition & 1 deletion components.cake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Cor
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "4.0.0-beta.7", "8.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "6.1.4", "8.0", ComponentGroup.Firebase, csprojName: "Database");
Artifact FIREBASE_DYNAMIC_LINKS_ARTIFACT = new Artifact ("Firebase.DynamicLinks", "4.0.8", "8.0", ComponentGroup.Firebase, csprojName: "DynamicLinks");
Artifact FIREBASE_IN_APP_MESSAGING_ARTIFACT = new Artifact ("Firebase.InAppMessaging", "0.19.2", "9.0", ComponentGroup.Firebase, csprojName: "InAppMessaging");
Artifact FIREBASE_IN_APP_MESSAGING_ARTIFACT = new Artifact ("Firebase.InAppMessaging", "0.19.2.1", "9.0", ComponentGroup.Firebase, csprojName: "InAppMessaging");
Artifact FIREBASE_INSTALLATIONS_ARTIFACT = new Artifact ("Firebase.Installations", "1.1.1", "8.0", ComponentGroup.Firebase, csprojName: "Installations");
Artifact FIREBASE_INSTANCE_ID_ARTIFACT = new Artifact ("Firebase.InstanceID", "4.3.3", "8.0", ComponentGroup.Firebase, csprojName: "InstanceID");
Artifact FIREBASE_MLKIT_ARTIFACT = new Artifact ("Firebase.MLKit", "0.19.0", "9.0", ComponentGroup.Firebase, csprojName: "MLKit");
Expand Down
2 changes: 1 addition & 1 deletion source/Firebase/InAppMessaging/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ interface InAppMessagingAction

// @interface FIRInAppMessagingDisplayMessage : NSObject
[DisableDefaultCtor]
[BaseType (typeof(NSObject), Name = "InAppMessagingDisplayMessage")]
[BaseType (typeof(NSObject), Name = "FIRInAppMessagingDisplayMessage")]
interface InAppMessagingDisplayMessage
{
// @property (readonly, copy, nonatomic) FIRInAppMessagingCampaignInfo * _Nonnull campaignInfo;
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/InAppMessaging/InAppMessaging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<RootNamespace>Firebase.InAppMessaging</RootNamespace>
<AssemblyName>Firebase.InAppMessaging</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>0.19.2</FileVersion>
<FileVersion>0.19.2.1</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -23,7 +23,7 @@
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=2125628</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>0.19.2</PackageVersion>
<PackageVersion>0.19.2.1</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 9f3cabf

Please sign in to comment.