这是我的 build.gradle
buildTypes {
debug {
resValue "string", "facebook_app_id", "\"XXXXXXXXX\""
}
live{
resValue "string", "facebook_app_id", "\"XXXXXXXXX\""
}
}
这是我使用 facebook_app_id 的清单文件
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id"/>
这在调试时工作正常,但是在生成签名的 apk 时会产生此错误
未找到与给定名称匹配的资源(在“值”处,值为“@string/facebook_app_id”)。