I have two branches of the same master
version1
version2
I would like to be able to have both versions of the same app installed on my phone at the same time, without them overwriting each-other.
Is it possible?
Thanks
Parallel Space Parallel Space is a pioneer in the app cloning niche and is based on multiDroid, the first and fastest Android virtualization system. You can use it to create two versions of an app with separate data files, so both versions run independently.
Dual Messenger is an exclusive feature for dual-SIM Galaxy models that lets you clone certain social apps to use two different accounts at the same time. It's a great option if you have separate accounts for work, school, family, and your public persona.
Yes. It is possible.
Change the package name in your Android manifest or app build.gradle.
Example:
Application version 1
app build gradle:
defaultConfig {
applicationId "com.example.application.appone"
...
}
manifest file:
<manifest
package="com.example.application.appone">
Application version 2
app build gradle:
defaultConfig {
applicationId "com.example.application.apptwo"
...
}
manifest file:
<manifest
package="com.example.application.apptwo">
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With