现在我正在使用GCM,当我在应用classpath 'com.google.gms:google-services:2.0.0-alpha3'
中为build.gradle
的项目apply plugin: 'com.google.gms.google-services'
添加build.gradle
时,编译器会因为ain而发出警告无法建立项目
Warning:Renderscript support mode is not currently supported with renderscript target 21+
当我删除classpath 'com.google.gms:google-services:2.0.0-alpha3'
时,它运行正常。我正在关注谷歌的official快速启动GCM示例应用程序,我将其构建为一个单独的项目,它也工作正常。这发生在我正在尝试将该功能添加到我的应用程序中。任何人都知道出了什么问题?