Skip to main content

Xamarin Android

This page describes how to migrate your application from using PinchSDK to preliminary release of Kettle.

Replace repository

  1. Replace all Pinch NuGet's to reference the version 3.0.0-kettle. This is version is published as a pre-release on the official NuGet feed.

Replace meta-data in AndroidManifest.xml

  1. Key com.fluxloop.pinch.sdk.API_KEY has been renamed to com.kogenta.kettle.API_KEY.
  2. Key com.fluxloop.pinch.sdk.PRODUCTION_MODE has been renamed to com.kogenta.kettle.PRODUCTION_MODE.

Replace imports

  1. Replace all occurrences of using Com.Fluxloop.Pinch.Sdk with using Com.Kogenta.Kettle.Sdk.
  2. Replace all occurrences of using Com.Fluxloop.Pinch.Common with using Com.Kogenta.Kettle.Common.

Replace calls to Pinch

  1. Replace all occurrences of Pinch. with Kettle..
  2. Replace all occurrences of PinchMessagingCenter. with KettleMessagingCenter..
  3. Replace all occurrences of PinchMessage with KettleMessage.
  4. Replace all occurrences of PinchMetrics. with KettleMetrics..