loadsmart / rn-salesforce-chat

React Native wrapper for Salesforce SDK chat
MIT License
7 stars 10 forks source link

[Feature request] - Filter content for the custom maven url (decrease build time/Dependency Resolution time) #44

Open sanduluca opened 1 year ago

sanduluca commented 1 year ago

Describe the issue Adding custom maven url increase Dependency Resolution time(in my example from 1 min and 30 seconds to 8-12 minutes)

Screenshots

Before requested change image

After change image

After I added content filter for the custom maven url I got a faster build time. Here is how i did it

maven {
    url 'https://s3.amazonaws.com/salesforcesos.com/android/maven/release'
    content {
        // this repository *only* contains artifacts with group "com.salesforce.service"
        includeGroup "com.salesforce.service"
    }
}