作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 Google Analytics documentation .必须添加下面的行,但 eclipse 不会编译,因为 'verbose' 不是 bool
<bool name="ga_logLevel">verbose</bool>
有人知道如何解决这个问题吗?
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="https://schemas.android.com/tools" tools:ignore="TypographyDashes">
<!-- Replace placeholder ID with your tracking ID -->
<string name="ga_trackingId">XXXXXX</string>
<!-- Enable Activity tracking -->
<bool name="ga_autoActivityTracking">true</bool>
<!-- Enable automatic exception tracking -->
<bool name="ga_reportUncaughtExceptions">true</bool>
<!-- <bool name="ga_debug">false</bool> -->
<bool name="ga_logLevel">verbose</bool>
</resources>
最佳答案
您必须将 ga_logLevel 声明为字符串。
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="https://schemas.android.com/tools" tools:ignore="TypographyDashes">
<!-- Replace placeholder ID with your tracking ID -->
<string name="ga_trackingId">XXXXXX</string>
<!-- Enable Activity tracking -->
<bool name="ga_autoActivityTracking">true</bool>
<!-- Enable automatic exception tracking -->
<bool name="ga_reportUncaughtExceptions">true</bool>
<!-- <bool name="ga_debug">false</bool> -->
<string name="ga_logLevel">verbose</string>
</resources>
关于android - 错误 : String types not allowed (at 'ga_logLevel' with value 'verbose' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22391968/
根据 Google Analytics documentation .必须添加下面的行,但 eclipse 不会编译,因为 'verbose' 不是 bool verbose 有人知道如何解决这个问题
我是一名优秀的程序员,十分优秀!