One Android Studio project to deploy multiple apps -
i have developed app android studio. product owner has need deploy different apps different app names, app icons , themes. apps same different branding share code.
i going automate deploy builds gradle scripts have realized package should different each app.
can deploy these apps google play using 1 project? can change package name each deploy?
as ken wolf pointed out, gradle, when using build variants, build system enables uniquely identify different packages each product flavors , build types.
the application id in build type can added suffix specified product flavors:
    productflavors {         pro {             applicationid = "com.example.my.pkg.pro"         }         free {             applicationid = "com.example.my.pkg.free"         }     }      buildtypes {         debug {             applicationidsuffix ".debug"         }     }     ....   more info: http://developer.android.com/intl/es/tools/building/configuring-gradle.html
Comments
Post a Comment