qonversion_flutter 0.3.0 copy "qonversion_flutter: ^0.3.0" to clipboard
qonversion_flutter: ^0.3.0 copied to clipboard

outdated

In-App Subscription Infrastructure to grow your subscription business

Get access to the powerful yet simple subscription analytics:

  • Conversion from install to paying user, MRR, LTV, churn and other metrics.
  • Feed the advertising and analytics tools you are already using with the data on high-value users to improve your ads targeting and marketing ROAS.

Pub

Installation #

To use Qonversion in your Flutter app, add qonversion as a dependency in your pubspec.yaml file:

dependencies:
  qonversion_flutter: ^0.3.0

Run flutter pub get to install dependency.

Usage #

You need to configure Qonversion once at a starting point of your app.

For example, launch Qonversion in initState of your top level widget:

...
import 'package:qonversion_flutter/qonversion.dart';

...

String _qonversionUserId;

@override
void initState() {
  super.initState();
  
  _launchQonversion();
}

Future<String> _launchQonversion() async {
  _qonversionUserId = await Qonversion.launch(
    iosApiKey: 'YOUR_IOS_API_KEY',
    androidApiKey: 'YOUR_ANDROID_API_KEY',
  );
}

...

Qonversion will track purchases automatically.

You can also specify your client side userId (instead of Qonversion user-id) that will be used for matching data in the third party data:

final userId = 'CLIENT_SIDE_USER_ID';
Qonversion.launch(
  iosApiKey: 'YOUR_IOS_API_KEY',
  androidApiKey: 'YOUR_ANDROID_API_KEY',
  userId: userId,
);

License #

Qonversion SDK is available under the MIT license.

43
likes
0
pub points
85%
popularity

Publisher

verified publisherqonversion.io

In-App Subscription Infrastructure to grow your subscription business

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on qonversion_flutter