SDK Installation
Android Native
Tracking Properties on Android
1min
track user 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 mandatory user properties docid\ tgt0siqbxh6aitrhi1gpl for more details void updateuserprofile() { cooeesdk cooeesdk = cooeesdk getdefaultinstance(context); map\<string, string> profile = new hashmap<>(); profile put("name", "john doe"); profile put("email", "john\@example com"); profile put("mobile", "9876543210"); profile put("logged in", true); profile put("foo", "bar"); cooeesdk updateuserprofile(profile); }fun updateuserprofile(){ val cooeesdk = cooeesdk getdefaultinstance(context) val profile = mapof( "name" to "john doe", "email" to "john\@letscooee com", "phone" to "9876543210", "logged in" to true, "foo" to "bar" ) cooeesdk updateuserprofile(profile) }