In grable I write compile 'com.android.support:design:22.2.0' does not load, underlines in red, also happens with all android libraries.
If you connect a non-android, for example compile 'org.adw.library:discrete-seekbar:1.0.0' everything connects perfectly.
What is the problem?
Mistake:
Dependency 'com.android.support:design:22.2.0' not found
build.gradle :
android { compileSdkVersion 22 buildToolsVersion "22.0.1" defaultConfig { applicationId "com.mycompany.myapp18" minSdkVersion 14 targetSdkVersion 21 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false runProguard false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } repositories { jcenter() } dependencies { compile 'com.android.support:design:22.2.0' //compile 'com.android.support:cardview-v7:+' compile fileTree(dir: 'libs', include: ['*.jar']) compile files ('libs/android-support-v4.jar') //compile files ('libs/android-support-design.jar') //compile project('ParallaxScroll') compile 'com.github.nirhart:parallaxscroll:1.0' //./gradlew :ParallaxScroll:assembleDebug compile 'com.melnykov:floatingactionbutton:1.3.0' compile files ('libs/android-support-v7-cardview.jar') compile files ('libs/android-support-v7-recyclerview.jar') //compile 'com.github.navasmdc:MaterialDesign:1.5@aar' compile 'me.drakeet.materialdialog:library:1.2.2' compile 'org.adw.library:discrete-seekbar:1.0.0' compile 'com.getbase:floatingactionbutton:1.10.0' }