error: cannot access zzeuq class file for com.google.android.gms.internal.zzeuq not found

前端 未结 5 903
傲寒
傲寒 2020-12-20 07:32

I am facing this error in my project here is my gradle build

implementation fileTree(dir: \'libs\', include: [\'*.jar\'])
implementation \'com.android         


        
5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-20 08:26

    Make sure the compile and target sdk number is the same as the app compat number. like this

    compileSdkVersion 26
    targetSdkVersion 26
    implementation 'com.android.support:appcompat-v7:26.1.0'
    

提交回复
热议问题