Dear Team,

We have an Android app Called Tiger.do

We are trying to make re marketing audiences for Google Adwords Via Google 
analytic.   

and We have implemented the guidelines given here for the same.

Enable Remarketing and Advertising Reporting Features for an app

When you enable these features for an app, then Analytics collects the 
information it normally does, as well as anonymous information associated 
with mobile advertising IDs.

To enable these features for an app, you need to modify the Analytics 
tracking code that you have included in your app code. The examples below 
explain how to modify the tracking code for Android and iOS apps.
App-tracking code change for Android

To enable these features for Android, modify your Analytics tracking code 
to collect the advertising id. Call theenableAdvertisingIdCollection method 
on the tracker for which you want to enable these features. For example:

// Get tracker.
Tracker t = ((AnalyticsSampleApp) 
getActivity().getApplication()).getTracker(
TrackerName.APP_TRACKER);

// Enable Display Features.
t.enableAdvertisingIdCollection(true);

Learn more 
<https://developers.google.com/analytics/devguides/collection/android/v4/display-features>
 about 
supporting Display Advertising on Android
App-tracking code change for iOS

To enable these features for iOS, collect the IDFA (Identifier for 
Advertisers). To enable IDFA collection, link thelibAdIdAccess.a and 
AdSupport.framework libraries to your application and set the 
allowIDFACollection to*YES* on each tracker that will collect the IDFA. For 
example:

// Assumes a tracker has already been initialized with a property ID, 
otherwise
// getDefaultTracker returns nil.
id tracker = [[GAI sharedInstance] defaultTracker];

// Enable IDFA collection.
tracker.allowIDFACollection = YES;


Even after making these changes in the app we are not able to collect any 
data in the Re marketing audience.

Can you please help us solve this issue.

If there is any paramter which needs to be passed in this code. or some 
other method.


Regards,

Abhishek 



-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/4d455e7f-d2c3-4a99-9eab-51921e46fc5c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to