Program type already present: bolts.AggregateException

Hello, i need to use:

implementation ‘com.github.parse-community.Parse-SDK-Android:parse:1.24.1’
implementation "com.github.parse-community.Parse-SDK-Android:fcm:1.24.1’
implementation ‘com.github.parse-community.Parse-SDK-Android:facebook:1.24.1’
implementation ‘com.github.parse-community:ParseLiveQuery-Android:1.2.0’

but i get this error:
AGPBI: {“kind”:“error”,“text”:“Program type already present: bolts.AggregateException”,“sources”:[{}],“tool”:“D8”}

i try:
implementation(“com.github.parse-community.Parse-SDK-Android:parse:1.24.1”) {
exclude group: ‘com.parse.bolts’, module: ‘bolts-tasks’;
}
implementation(“com.github.parse-community.Parse-SDK-Android:facebook:1.24.1”) {
exclude group: ‘com.parse.bolts’, module: ‘bolts-tasks’;
}
implementation(“com.github.parse-community.Parse-SDK-Android:fcm:1.24.1”) {
exclude group: ‘com.parse.bolts’, module: ‘bolts-tasks’;
}
implementation(“com.github.parse-community.Parse-SDK-Android:bolts-tasks:1.24.1”) {
exclude group: ‘com.parse.bolts’, module: ‘bolts-tasks’;
}
implementation(‘com.github.parse-community:ParseLiveQuery-Android:1.2.0’) {
exclude group: ‘com.parse.bolts’, module: ‘bolts-tasks’;
}

but,not solved my problem.

someone can help me?

Thanksss!!!