我创建的清单占位符看起来像这样:
manifestPlaceholders = [appDrawerName: "Staging",canExport:"true"]
我试图用它在活动上设置以下导出属性:
<activity android:name=".UI.product.ProductDetailsHostActivity"
android:theme="@style/NoActionBarTheme"
android:exported="${canExport}"/>
但我收到以下错误:
顺便说一句,第一个占位符工作正常。答案 0 :(得分:2)
您必须提供一个布尔值,而不是manifestPlaceholders数组中的字符串。
更改此
manifestPlaceholders = [appDrawerName: "Staging",canExport:"true"]
到
manifestPlaceholders = [appDrawerName: "Staging",canExport:true]
注意布尔值为true而不是字符串“true”