我已将Google Analytics(V2)应用到我的Android应用中。不久前,代码成功地将数据发送到配置文件(V2)。但是现在它拒绝连接到服务:
04-09 14:42:49.911: W/GAV2(8576): Thread[main,5,main]: Need to call initialize() and be in fallback mode to start dispatch.
04-09 14:42:49.921: I/GAV2(8576): Thread[main,5,main]: ExceptionReporter created, original handler is com.android.internal.os.RuntimeInit$UncaughtHandler
04-09 14:42:50.051: D/libEGL(8576): loaded /system/lib/egl/libEGL_mali.so
04-09 14:42:50.061: D/libEGL(8576): loaded /system/lib/egl/libGLESv1_CM_mali.so
04-09 14:42:50.061: D/libEGL(8576): loaded /system/lib/egl/libGLESv2_mali.so
04-09 14:42:50.120: D/OpenGLRenderer(8576): Enabling debug mode 0
04-09 14:42:50.190: W/IInputConnectionWrapper(8576): showStatusIcon on inactive InputConnection
04-09 14:42:54.881: I/GAV2(8576): Thread[GAThread,5,main]: connecting to Analytics service
04-09 14:42:54.891: I/GAV2(8576): Thread[GAThread,5,main]: connect: bindService returned false for Intent { act=com.google.android.gms.analytics.service.START (has extras) }
04-09 14:42:54.901: W/GAV2(8576): Thread[GAThread,5,main]: Service unavailable (code=1), will retry.
04-09 14:42:54.941: I/GAV2(8576): Thread[GAThread,5,main]: No campaign data found.
04-09 14:42:59.911: I/GAV2(8576): Thread[Service Reconnect,5,main]: connecting to Analytics service
04-09 14:42:59.921: I/GAV2(8576): Thread[Service Reconnect,5,main]: connect: bindService returned false for Intent { act=com.google.android.gms.analytics.service.START (has extras) }
04-09 14:42:59.921: W/GAV2(8576): Thread[Service Reconnect,5,main]: Service unavailable (code=1), using local store.
04-09 14:42:59.921: I/GAV2(8576): Thread[Service Reconnect,5,main]: falling back to local store
04-09 14:42:59.971: V/GAV2(8576): Thread[GAThread,5,main]: dispatch running...
04-09 14:43:00.061: V/GAV2(8576): Thread[GAThread,5,main]: ...nothing to dispatch
04-09 14:43:00.061: I/GAV2(8576): Thread[GAThread,5,main]: PowerSaveMode initiated.
04-09 14:43:52.951: D/dalvikvm(8576): GC_CONCURRENT freed 197K, 4% free 7258K/7492K, paused 15ms+5ms, total 56ms
04-09 14:43:54.611: W/IInputConnectionWrapper(8576): showStatusIcon on inactive InputConnection
我很确定我的代码已经足够,因为它之前已成功发送数据。这些是我实施的步骤(使用Android Google Analytics V2文档):
清单补充:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
主要活动补充:
@Override
public void onStart() {
super.onStart();
EasyTracker.getInstance().activityStart(this);
}
@Override
public void onStop() {
EasyTracker.getInstance().activityStop(this);
super.onStop();
}
xml(analytics.xml)
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<!--tracking ID-->
<string name="ga_trackingId">UA-(copied from profile)-1</string>
<!--Enable automatic activity tracking-->
<bool name="ga_autoActivityTracking">true</bool>
<!--Enable automatic exception tracking-->
<bool name="ga_reportUncaughtExceptions">true</bool>
<!--Enable debug tracking-->
<bool name="ga_debug">true</bool>
<integer name="ga_dispatchPeriod">20</integer>
</resources>
我在应用程序启动时收到警告。我试过创建一个新的个人资料/帐户。我试过用&amp; #45;和&amp; #8211;而不是破折号。自从在配置文件上收到最后一个数据以来,已经过了30多个小时,从那时起上面的logcat行。
任何想法是如何造成的?
答案 0 :(得分:2)
可能不是你的情况,但无论如何它仍然存在。
我的应用程序中的分析工作正常。我正在使用Eclipse并决定切换到Intellij IDE。当我这样做时,IDE在我的analytics.xml文件的破折号字符上显示了一个类似的警告(关于ga_trackingId)。当我做出改变(人眼看不到)时,警告就消失了,但分析才停止工作。
可能是文件编码的东西,无论如何,但我的情况是我必须键入短划线字符而不是粘贴它(还要添加工具) :ignore =“TypographyDashes”在我的文件中去除警告)。
答案 1 :(得分:0)
不确定这是否重要,但我的analytics.xml存在于“值”而非“xml”中,并且工作正常。
这是它的外观。希望这会有所帮助。
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="TypographyDashes">
<!-- Replace placeholder ID with your tracking ID -->
<string name="ga_trackingId">UA-8158474-29</string>
<!-- Enable automatic activity tracking -->
<bool name="ga_autoActivityTracking">true</bool>
<integer name="ga_dispatchPeriod">40</integer>
<!-- Enable automatic exception tracking -->
<bool name="ga_reportUncaughtExceptions">true</bool>
</resources>
答案 2 :(得分:0)
ga_debug将此设为false并尝试一次。可能你会得到它。
<!--Enable debug tracking-->
<bool name="ga_debug">false</bool>
答案 3 :(得分:0)
您是否在Google Analytics网页界面上查看过您实际上没有收到任何内容?
我还有调试打印,声明没有连接,但我的代码仍然有效(我也使用EasyTracker)。我在网络用户界面上查看时收到了活动。这也是你的情况吗?不幸的是,我不知道为什么调试说它没有连接。