在安卓工作室中导入包



我正在尝试导入这些软件包

 import com.google.android.gms.common.ConnectionResult;
 import com.google.android.gms.common.GooglePlayServicesUtil;
 import com.google.android.gms.maps.CameraUpdateFactory;
 import com.google.android.gms.maps.GoogleMap;
 import com.google.android.gms.maps.MapFragment;
 import com.google.android.gms.maps.SupportMapFragment;
 import com.google.android.gms.maps.GoogleMap.OnMapClickListener;
 import com.google.android.gms.maps.model.LatLng;

但是给了我找不到它们的错误

您忘记在导入关键字后在下面放置空格。

import com.google.android.gms.common.GooglePlayServicesUtil;

尝试使用它

implementation 'com.google.maps.android:android-maps-utils:0.5'

相关内容

  • 没有找到相关文章

最新更新