美文网首页Android架构设计
Warning:Configuration 'compi

Warning:Configuration 'compi

作者: pkxutao | 来源:发表于2018-04-10 11:27 被阅读12318次

    Android Studio升级3.1后提示这个

    Configuration 'androidTestCompile' is obsolete and has been replaced with 'androidTestImplementation' and 'androidTestApi'.
    It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
    
    
    Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
    It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
    
    
    Configuration 'androidTestApi' is obsolete and has been replaced with 'androidTestImplementation'.
    It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
    
    

    打开官网看到配置更新了,


    image.png

    按照提示修改就行了,
    compile =》implementation
    androidTestCompile =》androidTestImplementation
    testCompile => testImplementation
    搞定

    相关文章

      网友评论

        本文标题:Warning:Configuration 'compi

        本文链接:https://www.haomeiwen.com/subject/hnmghftx.html