Should I publish the Android and iOS versions of my app under the same package name, or is there some benefit in using different package names?
i.e. should I use com.mycompany.myapp
for the Android and iOS versions of my app, or should I separate them as com.mycompany.myapp.ios
and com.mycompany.myapp.android
?
I can't think of any technical reason right now to use separate packages, but as this would be horrendous to change later I'm tempted to use different packages.