IMPORTANT: this library has been superseded by buildToolsVersion 21.1.0
The steps for multidexing if you are using 21.1.0 or higher is:
android {
compileSdkVersion 21
buildToolsVersion "21.1.0"
defaultConfig {
...
minSdkVersion 14
targetSdkVersion 21
...
// Enabling multidex support.
multiDexEnabled true
}
...
}
Note that the dependency on 'com.android.support:multidex:1.0.0' is automatic, there is not need to specify it.
I'll
1