In my case the added library missed some dependencies, but unfortunately Android Studio (0.8.14) has kept this as a secret.
There was no need to manually configure anything! I just added the missing libraries and used the default dependency configuration in the app build.gradle
file, like this
dependencies {
compile 'com.google.code.gson:gson:2.+'
compile fileTree(dir: 'libs', include: ['*.jar'])
}