[Solved] possibilities to combine two Android App’s


One Solution can be from what i understood you problem is you want both of you should work on same App and even can do your work individual and test it.

Solution can be:
Suppose you have Login Activity & he has DataViewpage activity. Both work on same project just

Add this in the manifest file in both Activity Login and dataview

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

So This will make 2 icons and both of you can work on same code base and also can test individual pages also..

And Put your code base in github.. so can work from anywhere..

Hope this will help you

solved possibilities to combine two Android App’s