0
votes

As Xcode has Bundle identifier for uniquely identifying the app. Hence if we change a bundle identifier it gives a totally new build. How can we do this in Android?

1
You have applicationId inside defaultConfig in your gradle file which uniquely identifies app on PlayStore - nitinkumarp

1 Answers

0
votes

change applicationId in defaultConfig at Build.gradle file. Like,

defaultConfig { applicationId "com.example.abc" }