Failed to resolve: com.google.android.material:material:1.0.0-alpha1

前端 未结 6 2033
暗喜
暗喜 2020-12-17 08:36

So I\'m following the official documentation to add the Material Components library to my project https://github.com/material-components/material-components-android/blob/mas

6条回答
  •  别那么骄傲
    2020-12-17 09:36

    Instead of:

    implementation 'com.google.android.material:material:1.1.0'
    

    Use:

       implementation group: 'com.google.android.material', name: 'material', version: '1.1.0-alpha05'
    

    And it works.

提交回复
热议问题