[TAG] Failed to resolve variable '${project.groupId}'
[TAG] Failed to resolve variable '${project.version}'
咋一看啥也没干报错也莫名其妙,我也就引用了个androidx的支持库(原来使用的是implementation 'com.android.support:appcompat-v7:28.0.0')
搜索一波,大概是说包冲突
报错原因引入的implementation 'androidx.appcompat:appcompat:1.1.0-alpha02'库与原有的support库冲突了,把对应Activity和fragment的继承包改为对应的AndroidX下的包clean一下即可
引入androidx需要配置project下的gradle.properties,android.useAndroidX=true
android.enableJetifier=true,如果忘了添加可能会造成“无法访问Fragment
找不到支持android.support.v4.Fragment的类”
双击错误定位到Glide.with(this),大意是Glide需要support-v4库的支持,当然Glide已经支持AndroidX,添加AndroidX
如果其他情况碰到Failed to resolve variable '${project.groupId}
- 直接File->Invalidate Caches / restart,不再报错了。