Skip to content

Commit

Permalink
inherit from NSObject on apple platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed Feb 8, 2021
1 parent 7d5c0cb commit e08ac95
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Plugin.InAppBilling/Shared/BaseInAppBilling.shared.cs
Expand Up @@ -9,8 +9,11 @@ namespace Plugin.InAppBilling
/// Base implementation for In App Billing, handling disposables
/// </summary>


#if __IOS__ || __MACOS__ || __TVOS__
public abstract class BaseInAppBilling : Foundation.NSObject, IInAppBilling, IDisposable
#else
public abstract class BaseInAppBilling : IInAppBilling, IDisposable
#endif
{
/// <summary>
/// Gets or sets if in testing mode
Expand Down

0 comments on commit e08ac95

Please sign in to comment.