在添加recyclerView依赖项时找不到参数的方法complie()

时间:2017-09-07 21:34:03

标签: android android-gradle

我正在尝试添加依赖项,因此我可以使用RecyclerView。

在andriod工作室我去构建>编辑库和依赖项。然后在选择库依赖项中搜索Recycler。我找到了下面的图书馆。

com.android.support:recyclerview-v7 (com.android.support:recyclerview-v7:26.0.0-alpha1)

添加此内容后,虽然gradle无法构建。我在这里读到它是由于版本而应该更改为'com.android.support:recyclerview-v7:25.3.1'。

但是现在我收到了一条我不遵循的错误消息,

Error:(30, 1) A problem occurred evaluating project ':app'.
  

无法在类型为org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler的对象上找到参数[com.android.support:recyclerview-v7:25.3.1]的方法complie()。

gradle这个

 apply plugin: 'com.android.application'

 android {
    compileSdkVersion 25
    buildToolsVersion "26.0.1"
    defaultConfig {
        applicationId "com.example.xxx.yyyyyyyyy"
        minSdkVersion 24
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 
"android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
   }
 }

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', 
{
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    complie 'com.android.support:recyclerview-v7:25.3.1'
}

清单

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

2 个答案:

答案 0 :(得分:2)

You have complie instead of compile.

答案 1 :(得分:1)

  

无法找到方法complie()

dependencies

中有一个小错字

变化:

complie 'com.android.support:recyclerview-v7:25.3.1'

使用:

compile 'com.android.support:recyclerview-v7:25.3.1'