Android: Google Analytics availability in Google Play Services?

后端 未结 4 755
无人共我
无人共我 2021-02-07 12:52

Google Analytics has been announced to become part of the rolling out Google Play Services 4.3, however it is not yet included in the Google Play Services packages list:

4条回答
  •  野性不改
    2021-02-07 13:09

    It's part of the package list now.

    I think the basic functionality works something like this...

    import com.google.android.gms.analytics.GoogleAnalytics;
    
    @Override
    protected void onStart() {
        super.onStart();
        GoogleAnalytics.getInstance(this).reportActivityStart(this);
    }
    
    @Override
    protected void onStop() {
        super.onStop();
        GoogleAnalytics.getInstance(this).reportActivityStop(this);
    }
    

提交回复
热议问题