Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/src/internal/qonversion_internal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<QOfferings> offerings() async {
final offeringsString = await _invokeMethod(Constants.mOfferings) as String;
Expand Down
3 changes: 2 additions & 1 deletion lib/src/qonversion.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<QOfferings> offerings();

/// You can check if a user is eligible for an introductory offer, including a free trial.
Expand Down
Loading