I'm running this perl cmd on Mac OS to delete the whole line.
perl -i -pe's/<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/fb_app_id"/>/ /g' AndroidManifest.xml
The result is
fb_app_id"@string/fb_app_id"/>
I'm unable to escape the /
in "@string/fb_app_id
tried different variations @string//fb_app_id
and @string\/fb_app_id
but none worked.