Where is com.google.android.gms?

前端 未结 6 1258
臣服心动
臣服心动 2020-12-14 02:19

Today I updated Android SDK components to the newest version and somehow the whole com.google.android.gms package is gone. Instead, there is only com.google.android.maps wit

6条回答
  •  星月不相逢
    2020-12-14 03:12

    If using Android Studio you can add the Google Play Services to use the Google Android Maps v2 by adding a dependency to the build.gradle file.

    dependencies {
        compile 'com.google.android.gms:play-services:3.1.36'
    }
    

提交回复
热议问题