├── .editorconfig ├── .github └── workflows │ ├── publish-android.yml │ ├── publish-ios.yml │ └── publish-wrapper.yml ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── demo └── DemoApp │ ├── DemoApp.sln │ └── DemoApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Converter │ └── InverseBoolConverter.cs │ ├── DemoApp.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ └── Resources │ ├── AppIcon │ ├── appicon.svg │ └── appiconfg.svg │ ├── Fonts │ ├── OpenSans-Regular.ttf │ └── OpenSans-Semibold.ttf │ ├── Images │ └── icon.png │ ├── Raw │ └── AboutAssets.txt │ ├── Splash │ └── splash.svg │ └── Styles │ ├── Colors.xaml │ └── Styles.xaml ├── icon.png └── src ├── Maui.RevenueCat.Android ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── purchases-9.2.0-sources.jar │ └── purchases-9.2.0.aar ├── Maui.RevenueCat.Android.csproj ├── README.md └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Maui.RevenueCat.InAppBilling.sln ├── Maui.RevenueCat.InAppBilling ├── Enums │ ├── IntroElegibilityStatus.cs │ ├── LogLevel.cs │ ├── OwnershipType.cs │ ├── PeriodType.cs │ ├── PurchaseErrorStatus.cs │ ├── RefundRequestStatus.cs │ └── StoreType.cs ├── Extensions │ ├── DecimalExtensions.cs │ ├── EnumExtensions.cs │ ├── IDictonaryExtensions.cs │ ├── OfferingDtoExtensions.cs │ └── PackageDtoExtensions.cs ├── Maui.RevenueCat.csproj ├── Models │ ├── CustomerInfoDto.cs │ ├── DefaultPackageIdentifier.cs │ ├── EntitlementInfoDto.cs │ ├── OfferingDto.cs │ ├── PackageDto.cs │ ├── PricingDto.cs │ ├── ProductDto.cs │ ├── PurchaseResultDto.cs │ └── StoreTransactionDto.cs ├── Platforms │ ├── Android │ │ ├── Delegates │ │ │ ├── DelegatingCallback.cs │ │ │ ├── DelegatingListenerBase.cs │ │ │ ├── DelegatingLogInCallback.cs │ │ │ ├── DelegatingMakePurchaseListener.cs │ │ │ ├── DelegatingReceiveCustomerInfoCallback.cs │ │ │ └── DelegatingReceiveOfferingsCallback.cs │ │ ├── Exceptions │ │ │ └── PurchasesErrorException.cs │ │ ├── Extensions │ │ │ ├── CustomerInfoExtensions.cs │ │ │ ├── EntitlementInfosExtensions.cs │ │ │ ├── IDictionaryExtensions.cs │ │ │ ├── JavaDateExtensions.cs │ │ │ ├── LogLevelExtensions.cs │ │ │ ├── OfferingsExtensions.cs │ │ │ ├── OwnershipTypeExtensions.cs │ │ │ ├── PackageListExtensions.cs │ │ │ ├── PeriodTypeExtensions.cs │ │ │ ├── PurchasesExtensions.cs │ │ │ ├── StoreExtensions.cs │ │ │ └── StoreTransactionExtensions.cs │ │ ├── Models │ │ │ └── PurchaseSuccessInfo.cs │ │ └── RevenueCatBillingAndroid.cs │ ├── MacCatalyst │ │ └── RevenueCatBillingMac.cs │ ├── Windows │ │ └── RevenueCatBillingWindows.cs │ └── iOS │ │ ├── Exceptions │ │ └── PurchasesErrorException.cs │ │ ├── Extensions │ │ ├── CustomerInfoExtensions.cs │ │ ├── IDictionaryExtensions.cs │ │ ├── IntroElegibilityStatusExtensions.cs │ │ ├── LogLevelExtensions.cs │ │ ├── NsDateExtensions.cs │ │ ├── NsDictionaryExtensions.cs │ │ ├── NsSetExtensions.cs │ │ ├── OwnershipTypeExtensions.cs │ │ ├── PackageArrayExtensions.cs │ │ ├── PeriodTypeExtensions.cs │ │ ├── PurchasesExtensions.cs │ │ ├── RCEntitlementInfosExtensions.cs │ │ ├── RCOfferingsExtensions.cs │ │ ├── StoreExtensions.cs │ │ └── StoreTransactionExtensions.cs │ │ ├── Models │ │ ├── LoginResult.cs │ │ └── PurchaseSuccessInfo.cs │ │ └── RevenueCatBillingiOS.cs ├── PlatformsStandard │ └── RevenueCatBillingStandard.cs ├── RevenueCatInstaller.cs ├── Services │ ├── IRevenueCatBilling.cs │ └── RevenueCatBilling.cs └── Usings.cs └── Maui.RevenueCat.iOS ├── Additions └── ErrorDetails.cs ├── ApiDefinitions.cs ├── Maui.RevenueCat.iOS.csproj ├── README.md ├── StructsAndEnums.cs └── nativelib └── RevenueCat.xcframework ├── Info.plist ├── _CodeSignature ├── CodeDirectory ├── CodeRequirements ├── CodeRequirements-1 ├── CodeResources └── CodeSignature ├── ios-arm64 └── RevenueCat.framework │ ├── Headers │ ├── RevenueCat-Swift.h │ └── RevenueCat.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ ├── PrivacyInfo.xcprivacy │ └── RevenueCat └── ios-arm64_x86_64-simulator └── RevenueCat.framework ├── Headers ├── RevenueCat-Swift.h └── RevenueCat.h ├── Info.plist ├── Modules └── module.modulemap ├── PrivacyInfo.xcprivacy ├── RevenueCat └── _CodeSignature └── CodeResources /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/.github/workflows/publish-android.yml -------------------------------------------------------------------------------- /.github/workflows/publish-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/.github/workflows/publish-ios.yml -------------------------------------------------------------------------------- /.github/workflows/publish-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/.github/workflows/publish-wrapper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/README.md -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp.sln -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/App.xaml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/App.xaml.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/AppShell.xaml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/AppShell.xaml.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Converter/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Converter/InverseBoolConverter.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/DemoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/DemoApp.csproj -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/MainPage.xaml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/MauiProgram.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/Images/icon.png -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /demo/DemoApp/DemoApp/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/demo/DemoApp/DemoApp/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/icon.png -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/Jars/purchases-9.2.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/Jars/purchases-9.2.0-sources.jar -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/Jars/purchases-9.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/Jars/purchases-9.2.0.aar -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/Maui.RevenueCat.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/Maui.RevenueCat.Android.csproj -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/README.md -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /src/Maui.RevenueCat.Android/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.Android/Transforms/Metadata.xml -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling.sln -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Enums/IntroElegibilityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Enums/IntroElegibilityStatus.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Enums/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Enums/LogLevel.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Enums/OwnershipType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Enums/OwnershipType.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Enums/PeriodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Enums/PeriodType.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Enums/PurchaseErrorStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Enums/PurchaseErrorStatus.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Enums/RefundRequestStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Enums/RefundRequestStatus.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Enums/StoreType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Enums/StoreType.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Extensions/DecimalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Extensions/DecimalExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Extensions/IDictonaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Extensions/IDictonaryExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Extensions/OfferingDtoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Extensions/OfferingDtoExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Extensions/PackageDtoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Extensions/PackageDtoExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Maui.RevenueCat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Maui.RevenueCat.csproj -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/CustomerInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/CustomerInfoDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/DefaultPackageIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/DefaultPackageIdentifier.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/EntitlementInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/EntitlementInfoDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/OfferingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/OfferingDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/PackageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/PackageDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/PricingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/PricingDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/ProductDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/PurchaseResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/PurchaseResultDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Models/StoreTransactionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Models/StoreTransactionDto.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingCallback.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingListenerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingListenerBase.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingLogInCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingLogInCallback.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingMakePurchaseListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingMakePurchaseListener.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingReceiveCustomerInfoCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingReceiveCustomerInfoCallback.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingReceiveOfferingsCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Delegates/DelegatingReceiveOfferingsCallback.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Exceptions/PurchasesErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Exceptions/PurchasesErrorException.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/CustomerInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/CustomerInfoExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/EntitlementInfosExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/EntitlementInfosExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/IDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/IDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/JavaDateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/JavaDateExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/LogLevelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/LogLevelExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/OfferingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/OfferingsExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/OwnershipTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/OwnershipTypeExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/PackageListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/PackageListExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/PeriodTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/PeriodTypeExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/PurchasesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/PurchasesExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/StoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/StoreExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/StoreTransactionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Extensions/StoreTransactionExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/Models/PurchaseSuccessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/Models/PurchaseSuccessInfo.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Android/RevenueCatBillingAndroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Android/RevenueCatBillingAndroid.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/MacCatalyst/RevenueCatBillingMac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/MacCatalyst/RevenueCatBillingMac.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/Windows/RevenueCatBillingWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/Windows/RevenueCatBillingWindows.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Exceptions/PurchasesErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Exceptions/PurchasesErrorException.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/CustomerInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/CustomerInfoExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/IDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/IDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/IntroElegibilityStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/IntroElegibilityStatusExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/LogLevelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/LogLevelExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/NsDateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/NsDateExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/NsDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/NsDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/NsSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/NsSetExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/OwnershipTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/OwnershipTypeExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/PackageArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/PackageArrayExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/PeriodTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/PeriodTypeExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/PurchasesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/PurchasesExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/RCEntitlementInfosExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/RCEntitlementInfosExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/RCOfferingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/RCOfferingsExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/StoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/StoreExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/StoreTransactionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Extensions/StoreTransactionExtensions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Models/LoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Models/LoginResult.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Models/PurchaseSuccessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/Models/PurchaseSuccessInfo.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Platforms/iOS/RevenueCatBillingiOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Platforms/iOS/RevenueCatBillingiOS.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/PlatformsStandard/RevenueCatBillingStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/PlatformsStandard/RevenueCatBillingStandard.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/RevenueCatInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/RevenueCatInstaller.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Services/IRevenueCatBilling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Services/IRevenueCatBilling.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Services/RevenueCatBilling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Services/RevenueCatBilling.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.InAppBilling/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.InAppBilling/Usings.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/Additions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/Additions/ErrorDetails.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/ApiDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/ApiDefinitions.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/Maui.RevenueCat.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/Maui.RevenueCat.iOS.csproj -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/README.md -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/StructsAndEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/StructsAndEnums.cs -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/Info.plist -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Headers/RevenueCat-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Headers/RevenueCat-Swift.h -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Headers/RevenueCat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Headers/RevenueCat.h -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Info.plist -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/RevenueCat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64/RevenueCat.framework/RevenueCat -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Headers/RevenueCat-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Headers/RevenueCat-Swift.h -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Headers/RevenueCat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Headers/RevenueCat.h -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Info.plist -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/RevenueCat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/RevenueCat -------------------------------------------------------------------------------- /src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebechet/Maui.RevenueCat.InAppBilling/HEAD/src/Maui.RevenueCat.iOS/nativelib/RevenueCat.xcframework/ios-arm64_x86_64-simulator/RevenueCat.framework/_CodeSignature/CodeResources --------------------------------------------------------------------------------