Skip to content

Instantly share code, notes, and snippets.

@nonelse
Created August 9, 2016 15:30
Show Gist options
  • Save nonelse/ef7a1b4a12f5cf1d71dbedad14df9de7 to your computer and use it in GitHub Desktop.
Save nonelse/ef7a1b4a12f5cf1d71dbedad14df9de7 to your computer and use it in GitHub Desktop.
/*
* Copyright Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.samples.quickstart.analytics;
import android.app.Application;
import com.google.android.gms.analytics.GoogleAnalytics;
import com.google.android.gms.analytics.Tracker;
import com.adjust.sdk.Adjust;
import com.adjust.sdk.OnDeviceIdsRead;
/**
* This is a subclass of {@link Application} used to provide shared objects for this app, such as
* the {@link Tracker}.
*/
public class AnalyticsApplication extends Application {
private Tracker mTracker;
/**
* Gets the default {@link Tracker} for this {@link Application}.
* @return tracker
*/
synchronized public Tracker getDefaultTracker() {
if (mTracker == null) {
GoogleAnalytics analytics = GoogleAnalytics.getInstance(this);
// To enable debug logging use: adb shell setprop log.tag.GAv4 DEBUG
mTracker = analytics.newTracker(R.xml.global_tracker);
Adjust.getGoogleAdId(this, new OnDeviceIdsRead() {
@Override
public void onGoogleAdIdRead(String googleAdId) {
mTracker.set("&cid", googleAdId);
}
});
}
return mTracker;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment