I have following fields in ProductFlavors of build.gradle,
productFlavors {
Flavor1 {
applicationId "com.example.A"
buildConfigField 'int', 'ID', '123'
}
}
How can i update these 2 fields according to inputs given from Jenkins.?
Thanks in advance!!