Google Play Services Places SDK已弃用,因此我正在更新中。我已经更新到Androidx
。
我已根据this指南迁移到New Places SDK客户端,将我的implementation 'com.google.android.gms:play-services-places:11.0.4'
文件中的build.gradle
更改为implementation 'com.google.android.libraries.places:places:2.0.0'
在我的Activity
中,我进行了更改:
import com.google.android.gms.location.places.Places;
至
import com.google.android.libraries.places.api.Places;
因此,该问题已得到纠正,不再显示为红色错误。
但是我仍然得到:
您知道我该如何解决吗?我尝试在每个红色文本前加上com.google.android.libraries.places.api
无济于事。
我在SO上查找的可能解决方案已经过时,并且无法处理仅在2019年7月发生的Places迁移。
任何帮助将不胜感激。