gpt4 book ai didi

android - 找不到引用的方法 'void setLatestEventInfo(

转载 作者:搜寻专家 更新时间:2023-11-01 08:37:48 25 4
gpt4 key购买 nike

我正在更新我的应用,使其与 Android 6.0 中的新权限模型保持一致。更新了我的 build.gradle 文件后,我现在收到了停止构建的编译消息:

Warning:com.google.android.gms.common.GooglePlayServicesUtil: can't find referenced method 'void setLatestEventInfo(android.content.Context,java.lang.CharSequence,java.lang.CharSequence,android.app.PendingIntent)' in library class android.app.Notification

我的 build.grade 在这里:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.myspace.ian.myapp"
minSdkVersion 15
targetSdkVersion 23
versionCode 65
versionName "3.21"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'jcifs:jcifs:1.3.17'
compile files('libs/gson-2.3.1.jar')
compile files('libs/logback-android-1.1.1-3.jar')
compile files('libs/slf4j-api-1.7.6.jar')
compile 'com.google.android.gms:play-services:6.5.87'

compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
}

...这是我的 proguard-rules.pro 文件:

-keepclassmembers class com.dom925.xxxx {
public *;
}
-keep class !android.support.v7.internal.view.menu.**,android.support.** {*;}
-dontwarn javax.mail.**
-dontwarn org.apache.http.**
-dontwarn android.net.http.AndroidHttpClient
-dontwarn com.octo.android.robospice.SpiceService
-dontwarn android.support.v4.**

有人可以帮忙吗? (我是一个相对的菜鸟!)

最佳答案

compile 'com.google.android.gms:play-services:6.5.87'

这已经过时了。要么:

  • 更新到最新的 Play 服务(或者更好的是,更新您正在使用的 Play 服务的各个 Artifact ),或者

  • 将您的 compileSdkVersion 降级为 6.5.87 支持的版本

就目前而言,您正在使用旧的 Play 服务代码,它需要一些旧版本的 Android SDK,而不是 compileSdkVersion 23,其中 setLatestEventInfo() 不再存在.

关于android - 找不到引用的方法 'void setLatestEventInfo(,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35320299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com