Android Studio FloatingActionButton error

后端 未结 7 845
小鲜肉
小鲜肉 2020-12-05 17:26

I installed Android Studio yesterday, and after battling multiple java and other errors, I have come to an error that I cannot seem to fix. I have not added anything or done

相关标签:
7条回答
  • 2020-12-05 18:21

    The configuration compile is obsolete and has been replaced with implementation and api.

    You should use:

    implementation 'com.android.support:design:23.0.0'
    

    or:

    implementation 'com.android.support:design:28.0.0'
    

    as per your compileSDK version instead of:

    compile 'com.android.support:design:23.0.0'
    
    0 讨论(0)
提交回复
热议问题