It seems BuildConfig.java's content is hardcoded at GenerateSourcesMojo.1. How do/would you add new constants to an app's BuildConfig.java? (eg: production/staging backend host name)2. Would you accept a patch to add new constants from the plugin configuration? Eg:<plugin><groupId>com.jayway.maven.plugins.android.generation2</groupId><artifactId>android-maven-plugin</artifactId><configuration><buildConfig><server type="String">production.my-host.com</SERVER></buildConfig></configuration></plugin>which would add to BuildConfig.java:public static final String SERVER = "production.my-host.com";Regards,Jonas