Places class is removed from android play services 9.2.0

前端 未结 3 1303
梦如初夏
梦如初夏 2020-12-03 09:56

Today, I updated to google play services to 9.2.0. I got an error

com.google.android.gms.location.places.Places

not found. tha

3条回答
  •  心在旅途
    2020-12-03 10:43

    for play service 9.2.0 places import has changed from

    import com.google.android.gms.location.places;
    

    to

    import com.google.android.gms.location.places.Place;
    

    or you need all places folder

    import com.google.android.gms.location.places.*;
    

提交回复
热议问题