简体   繁体   中英

possibilities to combine two Android App's

I would like to know what's the best possibility to combine two Android Apps together?

I am working on a Loginpage for my Project. My friend is working on a Dataviewpage for the same Project.

I would like to know what are our options to combine these two Apps (both just in local eclipse), when we finished the seperate project's.

Our current Idea, would be to copy one part in the Eclipse and build it into the other one.

I am aware of, that this is the worst idea but I have no idea to do it an other way.

Hopefully you guys can help me out.

Thanks in advance.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM