英文:
Could not find any version that matches com.android.support:design:29.+
问题
Sure, here's the translation:
implementation 'com.android.support:design:29.+'
error:
无法解析依赖项 ':app@debug/compileClasspath':找不到与 com.android.support:design:29.+ 匹配的任何版本。
英文:
implementation 'com.android.support:design:29.+'
error:
Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matches com.android.support:design:29.+.
答案1
得分: 0
Go for this support:
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
Since, 29.+ is not available currently.
Also, it is best that you migrate to AndroidX support libraries and structure.
英文:
Go for this support:
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
Since, 29.+ is not available currently.
Also, it is best that you migrate to AndoridX support libraries and structure.
专注分享java语言的经验与见解,让所有开发者获益!
评论