Android 3.1.1 – Failed resolution of: Lcom/google/android/gms/common/internal/zzbq;

Try adding this dependency to your gradle file: implementation ‘com.android.support:multidex:1.0.3’ Also you should use the same versions for the support and play services libraries. And you should avoid using “+” for latest version. Change this part: implementation ‘com.google.android.gms:play-services-maps:+’ implementation ‘com.google.android.gms:play-services-auth:12.0.1’ implementation ‘com.google.android.gms:play-services-location:12.0.1’ implementation ‘com.google.android.gms:play-services:+’ implementation ‘com.google.android.gms:play-services-ads:+’ into this: implementation ‘com.google.android.gms:play-services-maps:12.0.1’ implementation ‘com.google.android.gms:play-services-auth:12.0.1’ implementation ‘com.google.android.gms:play-services-location:12.0.1’ implementation … Read more

No IDEA annotations attached to the JDK 1.8 (C:\…), some issues will not be found

Solution Close Android Studio Go to C:\Users\UserName\.android and rename the build-cache folder to build-cache.bak Go to C:\Users\UserName\.AndroidStudio3.2\system and rename these folders caches to caches.bak compile-server to compile-server.bak compiler to compiler.bak conversion to conversion.bak external_build_system to external_build_system.bak frameworks to frameworks.bak gradle to gradle.bak resource_folder_cache to resource_folder_cache.bak Open the Android Studio and open your project again.