react-native-algonomy
v1.0.0
Published
React Native wrapper for Algonomy Mobile SDK
Maintainers
Readme
react-native-algonomy
React Native wrapper for Algonomy Native SDK.
Installation
npm install react-native-algonomy
Usage
import Algonomy from 'react-native-algonomy';
Algonomy.setCustomerProfile({
email: '[email protected]',
mobileNo: '9876543210',
customerCode: 'CUST12345',
});
Algonomy.sendClickStream('product_view', { productId: 'ABC123' }, (status, response, msg) => {
console.log('Clickstream response:', status, response, msg);
});