Releases: segmentio/analytics-android
Releases · segmentio/analytics-android
4.5.0-beta.0
- New: Add Application Open and Application Backgrounded Events
4.3.0
4.3.0-RC2
4.3.0-RC1
4.2.6
4.2.5
- Fix: Using
Properties#putProducts
was stored as an array instead of a list, and not serialized correctly. This caused it to be unusable by Segment and server side integrations. If you're stuck on a previous version for some reason, you can manually store it as a list:
List<Product> products = new ArrayList<>();
products.add(new Product("foo", "bar", 10));
// add other products to this list.
Properties properties = new Properties();
properties.put("products", products);