J jo1234 Active Member Licensed User Longtime User May 22, 2019 #1 Hi, Firebase Analytics allows the use of user properties to filter. Is it possible to set user properties in B4i? Objective-C: B4X: [FIRAnalytics setUserPropertyString:food forName:@"favorite_food"]; https://firebase.google.com/docs/analytics/ios/properties Thanks a lot, Johannes PS: Here is the solution for B4A https://www.b4x.com/android/forum/threads/firebase-analytics-set-user-properties.105980/#post-663475
Hi, Firebase Analytics allows the use of user properties to filter. Is it possible to set user properties in B4i? Objective-C: B4X: [FIRAnalytics setUserPropertyString:food forName:@"favorite_food"]; https://firebase.google.com/docs/analytics/ios/properties Thanks a lot, Johannes PS: Here is the solution for B4A https://www.b4x.com/android/forum/threads/firebase-analytics-set-user-properties.105980/#post-663475
Erel B4X founder Staff member Licensed User Longtime User May 22, 2019 #2 Untested code: B4X: Dim no As NativeObject no.Initialize("FIRAnalytics").RunMethod("setUserPropertyString:forName:", Array("aaaa", "favorite_food")) Upvote 0
Untested code: B4X: Dim no As NativeObject no.Initialize("FIRAnalytics").RunMethod("setUserPropertyString:forName:", Array("aaaa", "favorite_food"))