Android Question How to develop an app that can be used with different names?

EduardoElias

Active Member
Licensed User
Longtime User
I need to develop a core app, for exemplo, delivery app for restaurant.

But each customer wants it with its name.

What is the way to create a core app and then simple customize it and publish with different names?

(I guess i could put most of the code in libraries and create a new app based on a simple template using these libraries. Not sure this is the right way)

Thanks !
 

Mahares

Expert
Licensed User
Longtime User
But each customer wants it with its name.
The simplest way would be to have a common app with the same package name, but change each customer's label name . Since it would be installed onto different customers devices, they will not overwrite each other. You can also, make the app icon personal to the given customer.
However, stand by, you will be getting more ideas from other forum users about this topic.
 
Upvote 0

EduardoElias

Active Member
Licensed User
Longtime User
The simplest way would be to have a common app with the same package name, but change each customer's label name . Since it would be installed onto different customers devices, they will not overwrite each other. You can also, make the app icon personal to the given customer.
However, stand by, you will be getting more ideas from other forum users about this topic.
thanks for the answer... but maybe I was not clear enought... the customer are for exempla restaurants, that want published the delivery app on google play with its own name.

in this case I need to create a package name with the customer (restaurante) name on it
 
Upvote 0

EduardoElias

Active Member
Licensed User
Longtime User
Build the core app, and build it with a different package for each customer
ok, but how that should work? what you mean different package? copy and paste of the project? library? I want to do something that can be easy to mantain
 
Upvote 0
Top