appmetrica_sdk 0.0.2+1 appmetrica_sdk: ^0.0.2+1 copied to clipboard
A Flutter plugin for Yandex AppMetrica SDK, a marketing platform for app install attribution, app analytics, and push campaigns.
appmetrica_sdk #
A Flutter plugin for Yandex AppMetrica SDK.
Usage #
To use this plugin, add appmetrica_sdk
as a dependency in your pubspec.yaml file.
Example #
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:appmetrica_sdk/appmetrica_sdk.dart';
void main() async {
/// Initializing the AppMetrica SDK.
await AppmetricaSdk()
.activate(apiKey: 'db2206ed-c61a-43aa-b95c-6912f60bd25e');
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _libraryVersion = 'Unknown';
@override
void initState() {
super.initState();
initLibrarayVersionState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initLibrarayVersionState() async {
String libraryVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
try {
libraryVersion = await AppmetricaSdk().getLibraryVersion();
} on PlatformException {
libraryVersion = 'Failed to get library version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) {
return;
}
setState(() {
_libraryVersion = libraryVersion;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Container(
padding: const EdgeInsets.all(8),
child: Center(
child: Column(
children: <Widget>[
Container(
child: Text(
'AppMetrica SDK Library version: $_libraryVersion\n'),
),
RaisedButton(
child: const Text('Send a custom event'),
onPressed: () {
/// Sending a custom event without nested parameters.
AppmetricaSdk().reportEvent(name: 'Updates installed');
},
),
RaisedButton(
child: const Text('Send a custom event with nested parameters'),
onPressed: () {
/// Sending a custom event with nested parameters.
AppmetricaSdk().reportEvent(
name: 'Current app statistics',
attributes: <String, dynamic>{
'Application': 'com.company.myapp.awesomeapp',
'Audience': 1000000000,
'Product price in €': 10000000.99,
'nested map': <String, dynamic>{
'strategies': 'Age of Empires',
},
});
},
),
RaisedButton(
child: const Text('Send user profile attributes'),
onPressed: () {
/// Sending profile custom string attribute.
AppmetricaSdk().reportUserProfileCustomString(
key: 'string_attribute', value: 'string');
/// Sending profile custom number attribute.
AppmetricaSdk().reportUserProfileCustomNumber(
key: 'number_attribute', value: 55);
/// Sending profile custom boolean attribute.
AppmetricaSdk().reportUserProfileCustomBoolean(
key: 'boolean_attribute', value: true);
/// Sending profile custom attribute of the counter type.
AppmetricaSdk().reportUserProfileCustomCounter(
key: 'counter_attribute', delta: 1);
/// Sending profile predefined user name attribute.
AppmetricaSdk()
.reportUserProfileUserName(userName: 'John');
/// Sending profile predefined NotificationsEnabled attribute.
AppmetricaSdk().reportUserProfileNotificationsEnabled(
notificationsEnabled: true);
},
),
],
),
),
)));
}
}
Documentation #
Common documentation available on AppMetrica official site.
Bugs or Requests #
If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on GitHub and we'll look into it. Pull request are also welcome.