android manifestPlaceholders - 如何使用布尔值

时间:2017-07-27 07:11:46

标签: android-gradle android-manifest

我创建的清单占位符看起来像这样:

manifestPlaceholders = [appDrawerName: "Staging",canExport:"true"]

我试图用它在活动上设置以下导出属性:

<activity android:name=".UI.product.ProductDetailsHostActivity"
           android:theme="@style/NoActionBarTheme"
           android:exported="${canExport}"/>

但我收到以下错误:

enter image description here 关于我如何解决这个问题的任何想法?我尝试使用canExport:true没有引号但结果相同。

顺便说一句,第一个占位符工作正常。

1 个答案:

答案 0 :(得分:2)

您必须提供一个布尔值,而不是manifestPlaceholders数组中的字符串。

更改此

manifestPlaceholders = [appDrawerName: "Staging",canExport:"true"]

manifestPlaceholders = [appDrawerName: "Staging",canExport:true]

注意布尔值为true而不是字符串“true”