What benefits does Maven give (over ant) for building android projects?

后端 未结 3 1745
星月不相逢
星月不相逢 2021-02-14 05:40

I\'ve recently been trying to setup maven for building my android projects, using the maven-android-plugin.

Whilst this is a good exercise, I\'m not convinced that the b

3条回答
  •  梦谈多话
    2021-02-14 06:22

    My android app shares business objects and other functionality with my back-end server so I pulled this out into a common maven project which both the app and the server (as maven projects) have a dependency on. Maven is perfect for this sort of thing, so its helpful in this instance, but if you are writing fairly straightforward apps, I'm not sure what benefit maven would have, especially when getting the android-maven-plugin to behave took me so long.

提交回复
热议问题