Two Android apps with different package names using the same Facebook app

When creating an application on Facebook, the application name and the name of the main application for Android applications are required. I have com.myapp and com.myapp.pro - is it possible to use one application for Facebook? Or do I need to create another version for pro?

As I can see, it works for both applications if I only specify "com.myapp". Is there any reason to specify the name and class of the package?

+4
source share
1 answer

you need to create another facebook account for another application, because when you cannot install both applications on the same device.

      <provider
            android:name="com.facebook.FacebookContentProvider"
            android:authorities="com.facebook.app.FacebookContentProvider{APP_ID}"
            android:exported="true" />

, facebook , . facebook .

+1

All Articles