Changing Default HomeScreen
Basically there are 4 homepages available. You can choose any of them as your default.
HomeScreen 1 (Set by default)

This is a tabbed viewpager fragment which shows posts from the specified category. The first tab will always be the Latest and will show posts from all categories. Other tabs can be added or removed from WorDroid Plugin Dashboard.

How to make this default homescreen (If it is not)
Go to MainActivity.java and find the code mentioned below
adapter.addFragment(new SomeOtherFragment().newInstance());
adapter.addFragment(new CategoryFragment().newInstance());
adapter.addFragment(new SearchFragment().newInstance());
adapter.addFragment(new MediaGridFragment().newInstance());
adapter.addFragment(new SettingsFragment().newInstance());
You need to edit the first line and make sure it looks like this
adapter.addFragment(new MainFragment().newInstance());
HomeScreen 2

This homescreen contains a slider and a list of post below that. If you want to set this a default homepage then follow these steps.
Find the code mentioned below.
adapter.addFragment(new MainFragment().newInstance());
adapter.addFragment(new CategoryFragment().newInstance());
adapter.addFragment(new SearchFragment().newInstance());
adapter.addFragment(new MediaGridFragment().newInstance());
adapter.addFragment(new SettingsFragment().newInstance());
Change the first line of the above mentioned code and make sure it took like this
adapter.addFragment(new SimpleHomeWithSliderFragment().newInstance(null,null,null,true));
HomeScreen 3
