I have a problem with jfeinstein10 sliding menu
I added the library to the folder of my root project. But I get this error:
Error: Build Tools SDK version (17.0.0) is too small for the ': SlidingMenu' project. The minimum value is 19.1.0
But I am already using "19.1.0", but it still says that I am using 17.0.0
Here is my build.gradle
apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion "19.1.0" defaultConfig { applicationId "com.repliklernet.replikler" minSdkVersion 14 targetSdkVersion 22 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:22.2.1' compile group:'com.squareup.picasso', name:'picasso', version:'2.5.0' compile project(':SlidingMenu') }
What am I missing?
source share