I am using these dependencies and am unable to decrease the API level from 14 to 13 or lower:
dependencies {
compile ('com.google.android.gms:play-services:+')
compile files('libs/dagger-1.2.2.jar')
compile files('libs/javax.inject-1.jar')
compile files('libs/nineoldandroids-2.4.0.jar')
compile files('libs/support-v4-19.0.1.jar')
compile 'com.android.support:multidex:1.0.1'
How do you increase the API level in Android when using compile ('com.google.android.gms:play-services:+')
?