Java Code Examples for com.flurry.android.FlurryAgent#setAge()
The following examples show how to use
com.flurry.android.FlurryAgent#setAge() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FlurryModule.java From react-native-flurry-sdk with Apache License 2.0 | 4 votes |
@ReactMethod public void setAge(int age) { FlurryAgent.setAge(age); }
Example 2
Source File: FlurryAnalyticsModule.java From react-native-flurry-analytics with MIT License | 4 votes |
@ReactMethod public void setUserAge(int age) { FlurryAgent.setAge(age); }