简体   繁体   中英

Cannot resolve symbol 'android' in Import

I am getting error in Android Studio. My import:

imports com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks;

are not working.

Use

import com.google.android.gms.common.api.GoogleApiClient;

instead of import s to import a class.

Download new version of google-play-services library. Always update/download newest version of google-play-services library.

you must add

compile 'com.google.android.gms:play-services-location:7.8.0' 

in dependencies block, in app/build.gradle. also update google play in sdk manager

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM