Mario Juárez
Mario Juárez
I'm working on a new **1.x version**. It'll be similar to current 0.x version and it'll include some of the requested features. `moment` dependency will be replaced by `luxon` and...
Hello everyone, Language/engine features seem to be very controversial and give us a lot of different opinions. Because of that, I have decided to use **default settings** for every language/engine...
For an opted-out user isn't possible to set `distinct id` when it becomes opt-in. It is always set as null: https://github.com/mixpanel/mixpanel-flutter/blob/091e7eb144255fe42ab0b968ed0acfa82df6f466/android/src/main/java/com/mixpanel/mixpanel_flutter/MixpanelFlutterPlugin.java#L236-L238 https://github.com/mixpanel/mixpanel-flutter/blob/091e7eb144255fe42ab0b968ed0acfa82df6f466/ios/Classes/SwiftMixpanelFlutterPlugin.swift#L202-L205 Android and iOS clients support it. A workaround...
Opt-out on Android removes the user profile fields but it doesn't remove them on iOS. I call `flush()` , then I call `optOutTracking()`: ```dart Future optOutTracking() async { await mixpanel.flush();...
It seems V2 decrypt fails for the latest version of `pycryptodome`. I have run the script installing the version `3.8.2` (`pip3 install pycryptodome==3.8.2`) PD: This script saves my day!
Hi, I just copy your code into a new cordova project after add android plataform and file plugin, then I get: FileError code 1 "1" is File not found
Hello! Bundler can't work with Rust 2018 edition code because `rustfmt` doesn't understand new syntax. Related issue: #6 To solve this it's necessary to use new `rustfmt-nightly`, there are two...
Maybe I'm wrong but reading `result` documentation seems that it will return a new `Result` applying the appropriate function but it returns `void`. Something like a `fold` method. https://github.com/epam-cross-platform-lab/dart_result_type/blob/21b2ac27599b1d0588faa7565096cbea91db0a22/lib/src/result.dart#L65-L66 If...