IB
в 3 приложении при абсолютно типичном коде оно просто падает после команды commit
FrameLayout container = (FrameLayout) findViewById(R.id.fragin);
// container.setVisibility(View.VISIBLE);
FragmentTransaction fTrans = frMan.beginTransaction();
StoreFragment fragment = new StoreFragment();
fTrans.add(R.id.fragin, fragment);
fTrans.commit();