I\'m using facebook login in my app. I\'ve created facebook app id. If I use facebook app id in values/strings.xml it works fine and I\'m able to generate signed apk in andr
The solution is we need to add attribute translatable="false"
in that particular string resource.
in android manifest change to this
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id"
tools:ignore="ManifestResource" />
from : https://code.google.com/p/android/issues/detail?id=194705