When I run
npm install react-native-google-analytics@latest --save
The version that comes down includes old code.
For example in my lib/CustomDimensions.js
addDimension(index, name) {
this.properties = {
[`cd${index}`]: name
};
}
Which should be
addDimension(index, name) {
this.properties[`cd${index}`] = name;
}
as updated in the below commit
0e5e865#diff-06466dd5d9193a549b4532feaf6bbe2e
Is there anyway to refresh this?