diff --git a/lib/src/internal/qonversion_internal.dart b/lib/src/internal/qonversion_internal.dart index c43b6e7..ebfa2df 100644 --- a/lib/src/internal/qonversion_internal.dart +++ b/lib/src/internal/qonversion_internal.dart @@ -217,6 +217,7 @@ class QonversionInternal implements Qonversion { return result; } + @Deprecated('Offerings are deprecated. Manage paywall products with Remote Configs instead: https://documentation.qonversion.io/docs/migrate-offerings-to-remote-configs') @override Future offerings() async { final offeringsString = await _invokeMethod(Constants.mOfferings) as String; diff --git a/lib/src/qonversion.dart b/lib/src/qonversion.dart index 6237e0f..8db57a0 100644 --- a/lib/src/qonversion.dart +++ b/lib/src/qonversion.dart @@ -123,7 +123,8 @@ abstract class Qonversion { /// For example, you can offer one set of products on a paywall immediately after onboarding and another set of products with discounts later on if a user has not converted. /// Offerings allow changing the products offered remotely without releasing app updates. /// - /// See [Offerings](https://qonversion.io/docs/offerings) for more details. + /// See [Migrate Offerings to Remote Configs](https://documentation.qonversion.io/docs/migrate-offerings-to-remote-configs) for more details. + @Deprecated('Offerings are deprecated. Manage paywall products with Remote Configs instead: https://documentation.qonversion.io/docs/migrate-offerings-to-remote-configs') Future offerings(); /// You can check if a user is eligible for an introductory offer, including a free trial.