wooga / atlas-build-unity

a gradle companion plugin for the wooga internal unity build system
Apache License 2.0
2 stars 2 forks source link

Move PropertyUtils to private static class [ATLAS-779] #165

Closed Larusso closed 2 years ago

Larusso commented 2 years ago

Description

The static class wooga.gradle.build.unity.ios.internal.utils.PropertyUtils was crossreferenced from other namespaces. We could move the functionality to gradle-commons but I'm not 100% sure if the logic still needed. I opted to duplicate the class in both plugin namespaces that use it because we will split this plugin into multiple repos. The logic is not so complicated.

Changes