Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on an fb application that requires the facebook application to be installed, so what I am trying is that when the user installs my app the facebook.apk should be installed first.. is there a way to accomplish this???

share|improve this question

1 Answer

You can check if facebook app is installed this way

    PackageManager pm = getPackageManager();
    boolean appInstalled = false;
    try
    {
           pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES);
           appInstalled = true;
    }
    catch (PackageManager.NameNotFoundException e)
    {
           appInstalled = false;
    }

The Facebook app uri is in my opinion com.facebook.katana, but you can check that via adb Then you can eventually start Intent heading to Fecebook page on Google Play.. Hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.