исправляю с двумя точками:
1: добавить два действия в манифест.
<activity android:name="com.facebook.FacebookActivity"
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:label="@string/app_name"/>
<activity android:name="com.facebook.CustomTabActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="@string/fb_login_protocol_scheme"/>
</intent-filter>
</activity>
2: замените manifestPlaceholders
в app / build.gradle на
resValue "string", "facebook_app_id", "$fbAppId"
resValue "string", "fb_login_protocol_scheme", "fb$fbAppId"
Я не знаю, почему не сработал манифестPlaceholder.