Failed to set up SDK: Error:Module \'app\': platform \'Google Inc.:Google APIs:21\' not found.
At a complete loss as to why this isn\'t working. Attemp
You can use compileSdkVersion 21
instead of yours .
android {
compileSdkVersion 21
buildToolsVersion '21.1.2'
defaultConfig {
applicationId "com.elgami.customizer"
minSdkVersion 14
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled false
//runProguard false
//proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}