我的应用程序中有一个完美的通知段。最近我开始使用Google Cloud Storage,因此我对gradle文件进行了以下更改:
compile 'com.wu-man:android-oauth-client:0.0.3'
compile 'com.google.apis:google-api-services-storage:v1-rev17-1.19.0'
compile(group: 'com.google.api-client', name: 'google-api-client', version:'1.19.0'){
exclude(group: 'com.google.guava', module: 'guava-jdk5')
}
这正是我修改的所有内容,但现在我的NotificationCompat.Builder.build()
和NotificationCompat.Builder.setPriority()
无法重新合并。像setSound()
这样的所有其他功能都在起作用。这只是这两种方法。
我试图清理我的项目,重建它等等。我也重新启动了我的电脑,但无法解决这两种方法。
我该怎么做,为什么会这样?