代码之家  ›  专栏  ›  技术社区  ›  user3668129

在依赖项中添加截击

  •  0
  • user3668129  · 技术社区  · 6 年前

    我正在尝试在build.gradle(模块:app)中添加Volley:

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:27.1.1'
        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    
        compile 'com.android.volley:volley:1.1.1'
    }
    

    并得到以下错误:

    Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
    

    有什么问题?我该怎么修?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Suraj Ghadge    6 年前

    试试这个

    implementation 'com.android.volley:volley:1.1.1'
    

    而不是

    compile 'com.android.volley:volley:1.1.1'