How can I customize gradle file?

-1
How does the build.gradle file get generated? Is it possible to customize the dependencies in it? include annotationProcessor for example? I am trying to use Lombok in the custom Java code of my Mendix application... and the build fails if I do "Build using Gradle": all getters and setters result in "error: cannot find symbol”.
asked
1 answers
0

Hello Ruslan

 

I’ve customized the gradle file of a native mobile app to include the dependencies required for a SalesForce integration.

// Required for SalesForce
maven {
   url "https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/repository"
}

 

then I could import the packages in a Java file, at the native part of the project

 

Changing the gradle file is also required if you are developing custom connectors:

https://docs.mendix.com/appstore/creating-content/connector-guide-best-practices/#extend-app-java

 

 

answered