Maven Dependencies with Android Studio / Gradle

后端 未结 6 883
礼貌的吻别
礼貌的吻别 2020-12-04 12:12

I am using the Gradle build system bundled with Android Studio. So far, I am able to build multi-project setups using dependencies that are stored in my project structure. I

6条回答
  •  生来不讨喜
    2020-12-04 12:40

    maven Maven continues using XML as the format to write build specification. However, structure is diametrically different. Maven has its own problems. Dependencies management does not handle well conflicts between different versions of the same library (something Ivy is much better at). XML as the build configuration format is strictly structured and highly standardized. Customization of targets (goals) is hard. Since Maven is focused mostly on dependency management, complex, customized build scripts are actually harder to write in Maven than in gradel.

提交回复
热议问题