Hi, I want to use appcompatv7-22 in my application to use these gradle settings
android { compileSdkVersion 22 buildToolsVersion "22.0.0" defaultConfig { applicationId "com.myapp" minSdkVersion 11 targetSdkVersion 22 } buildTypes { release { minifyEnabled true proguardFiles 'proguard.cfg' } } } dependencies { compile 'com.android.support:appcompat-v7:22.+' }
but when I run it, I give this error message
Error:Failed to find: com.android.support:appcompat-v7:22.+
I am trying to use this v7: 22.0.0 and this v7: 22.1.0 too, but still the same error
and this is my sdk maneger 

so can someone help me.
UPDATE
I see the extras \ android \ m2repository \ com \ android \ support folder, but March 21 was the latest version. my repository version is 10, and I know its latest version, so where is com.android.support:appcompat-v7:22.0.0 ?
answer
I found my problem, finally, thanks that dev replied that my problem is with the support of the ripository library, the latest version of which is 15, and my version is 9, and after updating my problem is solved.
source share