Qamar Khan
09/18/2023, 6:49 AMadeum { // this section added for AppDynamics
account {
name 'value of name'
licenseKey 'value of license key'
}
/* proguardMappingFileUpload {
failBuildOnUploadFailure false
enabled true
}*/
}
this code is working fine on build.gradle file but we are trying to convert our build.gradle to .kts file and unfortunately unable to convert this code for .kts.
Any one have idea to do this.
#compose #kotlin #ktsChristos Malliaridis
09/18/2023, 1:45 PMadeum {
account(object : Closure<ADPluginExtension>(this) {
fun doCall(conf: Account) {
with(conf) {
name = "some name"
licenseKey = "value key"
}
}
})
}
Please also note that there is a #gradle channel where you can post these kind of questions (probably). #compose is not the right topic.Qamar Khan
09/19/2023, 11:13 AMproguardMappingFileUpload {
failBuildOnUploadFailure false
enabled true
}
this one as well ... for above i commented but we need that one tooChristos Malliaridis
09/19/2023, 11:50 AMadeum
configuration from com.appdynamics:appdynamics-gradle-plugin:23.7.1
is the following (again, I cannot test it to know if it works):
adeum {
//...
symbolMappingFileUpload(object : Closure<ADPluginExtension>(this) {
fun doCall(conf: ADPluginExtension.SymbolMapConfig) {
with(conf) {
enabled = true
failBuildOnUploadFailure = false
}
}
})
}