Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple entries with same key: 24.0.0 rc4=24.0.0 rc4

After upgrade Android Studio to 2.2.3 it shows an error with:

IllegalArgumentException: Multiple entries with same key: 24.0.0 rc4=24.0.0 rc4 and 24.0.0 rc4=24.0.0 rc4

like image 610
mtrakal Avatar asked Feb 06 '23 19:02

mtrakal


1 Answers

Had this occur recently after updating a few bits.

My solution was to open the Preferences in Android Studio, browse to Android SDK -> SDK Tools, you will most likely see multiple copies of 24.0.0 rc4 (one with a dash instead of a space in the version name) under Android SDK Build-Tools. Uninstall both copies by unchecking them, and then hitting Apply. Once uninstalled, the list should go back to showing only one 24.0.0 version called 24-rc4, install this and resync Gradle.

It might also help to change the buildToolsVersion in your Gradle files to 24-rc4.

like image 97
sixones Avatar answered Feb 11 '23 16:02

sixones