I know this is a duplicate question, but solutions from previous post doesn\'t worked for me. Thats why am asking this question.
I am tryi
I have download your project from git and after checking i found that you have missed a line which is required to display map Fragment.
Replace your main activity code with the following code:-
public class MainActivity extends FragmentActivity {
private GoogleMap map;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
.getMap();
}