Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change Facebook confirmation dialog project name?

How to change below project name?

enter image description here

Here are some configurations I already did but still showing my previous project name.

<key>CFBundleDisplayName</key>
<string>ABCD</string>
<key>FacebookDisplayName</key>
<string>ABCD</string>

EDIT

enter image description here

Facebook Setting

enter image description here

like image 321
Pak Ho Cheung Avatar asked Sep 11 '18 14:09

Pak Ho Cheung


2 Answers

Here is a solution of your question just change in info.plist (Tested code)

<key>CFBundleName</key>
<string>ABCD</string> //Name you want to display

enter image description here

like image 141
Hardik Thakkar Avatar answered Nov 03 '22 19:11

Hardik Thakkar


Here is 2 solution of your question just change in info.plist (Tested code)

Method 1 ( for name other than app name)

<key>CFBundleName</key>
<string>ABCD</string> 

Method 2 ( for same as app name set in Your_Project => Build settings => Packaging => Product name )

<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string> 
like image 32
RiTeSh Avatar answered Nov 03 '22 18:11

RiTeSh