I have android studio on my windows machine (version : 2.3).
API Level 23,24,25 and latest build-tools installed.
I am having problem while building project ( Specifically with libmultispinner ) :
aidl is missing.
This is build.gradle file :
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion '25.0.1'
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
}
I have tried to update build tools and tried with upgrading/degrading while building project.
Invalidating cache didn't work either. What can be the problem ?