Xamarin Android
This page describes how to migrate your application from using PinchSDK to preliminary release of Kettle.
Replace repository
- 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
- Key
com.fluxloop.pinch.sdk.API_KEY
has been renamed tocom.kogenta.kettle.API_KEY
. - Key
com.fluxloop.pinch.sdk.PRODUCTION_MODE
has been renamed tocom.kogenta.kettle.PRODUCTION_MODE
.
Replace imports
- Replace all occurrences of
using Com.Fluxloop.Pinch.Sdk
withusing Com.Kogenta.Kettle.Sdk
. - Replace all occurrences of
using Com.Fluxloop.Pinch.Common
withusing Com.Kogenta.Kettle.Common
.
Replace calls to Pinch
- Replace all occurrences of
Pinch.
withKettle.
. - Replace all occurrences of
PinchMessagingCenter.
withKettleMessagingCenter.
. - Replace all occurrences of
PinchMessage
withKettleMessage
. - Replace all occurrences of
PinchMetrics.
withKettleMetrics.
.