0

I want to launch two different android apps from one neutral project but the installed app will be only neutral one, and in that there will be two different buttons to launch(open in that app only) resp. project.

Saurabh Deshmukh
  • 163
  • 1
  • 15

1 Answers1

-1

you need use flavores in gradle.

apply plugin: 'com.android.application'

android {

    defaultConfig {
       //...
    }

    buildTypes {
        //...
    }

    productFlavors {
        app1 {
            // config for app 1
        }
        app2 {
            // config for app 2
        }
    }

}



dependencies {
   //...
}

see this link for learn about flavors

Rasoul Miri
  • 11,234
  • 1
  • 68
  • 78