Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create Multiple copy of android application

i want to create multiple copies of android application in same device. first approach is i can make Create user account in my app and then i am able to use two accounts of whatsapp,yahoo etc applications but i fail to do this please help me how can i do this stuf... actually i want to make an app like this app : app Cloner

this App is actually manage two account simultaneously in android device. Please provide guideline how can i achieve this functionality..


And find a solution for this we have to create an virtual environment like as lody done so for this we need to implement C and Java knowledge because without the knowledge of NDK we can not create applications to manage multiple accounts. So we need to create virtual core inside our app that provide virtual environment for other applications. Working Examples Document Virtual app

Best Google Example

like image 409
Ashish Avatar asked Sep 20 '16 04:09

Ashish


People also ask

How do I clone an app multiple times?

First, you have to download and install Parallel Space on your device. Once you run the app, it will directly take you to the “Clone Apps” section. Tap on 'Add App' option. Select the apps (such as WhatsApp, Facebook, Messenger) you want to clone then click on 'Add to Parallel Space'.

Can you clone apps on Android?

App Cloner lets you create & install multiple copies of Android apps. App Cloner is the only multi-account app that creates true, independent, installable clones.

Can I clone an application?

Cloning an application refers to taking inspiration from a website or application whose outlook is different, unique from the rest and creating another application similar to that one. It is often misinterpreted as copying the same application or website. But that is not the case.

Can we create multiple clone?

Yes, if the clones share memory then each must have a separate stack.


1 Answers

All you have to do is make sure that you change the package name, applicationId and create a variant, you can follow this link to do it.

How to install different app variants on one Android device

Important: If you want also you can read this files into the apk file..

And as a DevrimTuncer mentioned:

You can decompile your apk with apktool and your manifest will be readable. After editing your manifest you can compile and create apk again. Remember to sign you apk after creating new apk. Link to the answer Here:

like image 65
AndroidStorm Avatar answered Oct 27 '22 02:10

AndroidStorm