1

这是我的 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”)。

4

1 回答 1

1

goto -> res->values->string.xml 打开该文件并写入

<string name="facebook_app_id">Facebook</string>
于 2017-07-30T11:31:19.920 回答