1

So I have a desktop application written in Java called XYZ and it is in a GitHub repository called XYZ. Now I have been working on an iOS app with the same name of XYZ. If I want to add this to GitHub now, what do I do? The obvious thing seems to be just adding iOS to the end of the repo name, but I'm not sure of there is some naming convention that other developers use.

Aaron
  • 306
  • 1
  • 4
  • 11

1 Answers1

1

There is no official naming convention.
You could use XYZ, but include two different builds (for instance two different pom.xml), one for each platform.

If you have sources that differ between platform, you might want to isolate them in their own Git repo, and aggregate them in a common XYZ repo through submodules.
See for instance "Build multi-platform executable for a SWT application using maven".

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250