SDK Installation
React Native
Tracking Properties
1 min
tracking properties as the user launches the app for the first time, cooee will create a user profile for them by default, we add multiple properties for a particular user which you can see in system default user properties along with these default properties, additional custom attributes/properties can also be shared we encourage mobile apps to share all properties for better machine learning modelling check out the docid\ tgt0siqbxh6aitrhi1gpl for more details function updateuserprofile(){ const userprofile = { 'name' 'john doe', 'email' 'john\@example com', 'mobile' '9876543210', 'customerid' 'foo bar', 'refcode' 'users unique ref code', 'logged in' true, 'foo' 'bar' }; cooeereactnative updateuserprofile(userprofile) then(resp => console log("success ", resp tostring())) catch(err => console error("error ", err tostring())); }