1

I have getting Cannot resolve sysmbol 'GoogleApiAvailability' after upgrad android studio 3.1.3 and upgrade gradle version 4.4.

Application gradle dependencies

dependencies {
  implementation fileTree(include: ['*.jar'], dir: 'libs')
  implementation 'com.android.support:appcompat-v7:25.4.0'
  implementation 'com.google.android.gms:play-services-safetynet:11.0.1'
  implementation 'com.google.android.gms:play-services-base:11.0.1'
}

Why i am getting this error after update android studio 3.1.3?

Jigar Shekh
  • 2,800
  • 6
  • 29
  • 54

1 Answers1

1

try to close the project, delete it from projects list then import it again through the import project option.

Take a look at this answer : https://stackoverflow.com/a/49537464/3151549

Oussama Haff.
  • 524
  • 1
  • 3
  • 14