0

我正在尝试将 Google Analytics 集成到我的应用程序中,但它没有向我发送报告或任何内容。我遵循了 Google 的这个指南,我将 .jar 文件粘贴到了我的 libs 文件夹中,我设置了构建路径,我做了指南告诉我的所有事情,但我什么也没得到。我没有收到任何错误,但是当我在模拟器上运行它时,我没有收到任何报告,并且 log-cat 没有显示任何内容。难道我做错了什么?谢谢!!

我的主要活动课程:

public class StartingPoint extends Activity {
public class myTrackedActivity extends Activity {
    @Override
      public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
      }

      @Override
      public void onStart() {
        super.onStart();
        // The rest of your onStart() code.
        EasyTracker.getInstance().activityStart(this); // Add this method.


      }

      @Override
      public void onStop() {
        super.onStop();
       // The rest of your onStop() code.
        EasyTracker.getInstance().activityStop(this); // Add this method.
      }
    }

public final static String EXTRA_MESSAGE = "com.primarycode.punnyjokes.MESSAGE";
//public static int iteration = 1;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_starting_point);

}

我的价值观中的 ANALYTICS.XML

<?xml version="1.0" encoding="utf-8" ?>

<resources>
  <!--Replace placeholder ID with your tracking ID-->
  <string name="ga_trackingId">UA-43160348-1</string>

  <!--Enable automatic activity tracking-->
  <bool name="ga_autoActivityTracking">true</bool>
  <bool name="ga_dryRun">false</bool>

  <!--Enable automatic exception tracking-->
  <bool name="ga_reportUncaughtExceptions">true</bool>

</resources>
4

1 回答 1

0

您忘记启动 EasyTracker。在项目的 Application 类的 onCreate 中执行此操作。

onCreate(){
    super.onCreate();
    EasyTracker.getInstance().setContext(this);
}
于 2013-08-15T19:48:12.203 回答