将支持库添加到build.gradle&之后无法导入RecyclerView。同步项目

时间:2016-03-12 23:50:19

标签: android android-studio android-recyclerview android-support-library

我正在使用Android Studio Beta 6,并且我已将$start = new DateTime($_POST['start']); $end = new DateTime($_POST['end']); 支持lib添加到RecyclerView的末尾。 我的应用已经正常运行,我现在只需要使用build.gradle

此处RecyclerView

build.gradle

我已经尝试了android { compileSdkVersion 21 buildToolsVersion "21.1.2" defaultConfig { minSdkVersion 14 targetSdkVersion 21 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } addCustomFieldsToBuildConfig(release) addCustomFieldsToBuildConfig(debug) } } dependencies { // ... compile 'joda-time:joda-time:2.1' compile 'com.google.android.gms:play-services-ads:+' compile 'com.google.android.gms:play-services-analytics:+' compile 'com.android.support:support-v13:21+' compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3' compile files('libs/com_nineoldandroids.jar') compile files('libs/comscore.jar') compile files('libs/crittercism_v2_1_7_crashonly.jar') compile files('libs/urbanairship-lib-1.0.1.jar') compile files('libs/adobeMobileLibrary-4.8.1.jar') compile "commons-io:commons-io:2.4" compile 'org.jsoup:jsoup:1.8.3' // I WANT TO ADD THESE: compile 'com.android.support:appcompat-v7:21.+' compile 'com.android.support:recyclerview-v7:21.+' } 的特定版本,例如' 21.0.2'但它们都会导致同样的问题。我要求Android Studio同步gradle设置,并且没有错误。

但正如您所见,我无法在RecyclerView 之后自动完成v7

1 个答案:

答案 0 :(得分:2)

如果这样可以帮助处于类似Android Studio的人,但我必须先转到Build -> Make Project才能解析对RecyclerView类的引用。