error when apply plugin: 'com.google.gms.google-services'

后端 未结 8 1496
夕颜
夕颜 2021-02-19 02:44

I followed google documentation to integrate my app to Google Analytics. But when adding

apply plugin: \'com.google.gms.google-services\'

and b

8条回答
  •  眼角桃花
    2021-02-19 03:30

    Sometimes, you have to update your REALM-PLUGIN and you need to write this in Top-Level Gradle (Project:Gradle), copy paste below "classpath" line:

    buildscript {
      ... 
      dependencies {
        classpath 'io.realm:realm-gradle-plugin:7.0.0' //<--Your answer.
      }
    }
    

提交回复
热议问题