之前我们项目pad版本是1.10.0,compileSdkVersion:34,targetSdkVersion 33,因为之前targetsdk34会报错。那么提审google出现这个提示,就不得不升级targetsdk到34了,也升级pad到1.10.3过,报错,查了好长时间,应该是这个playcore集成库中有依赖跟项目中现有依赖冲突(重了),所以换了一种方法,把playcore拆分开,送算是解决了,仅此记录一下。
implementation 'com.google.android.play:asset-delivery:2.2.2'
implementation 'com.google.android.play:app-update:2.1.0'
implementation 'com.google.android.gms:play-services-tasks:18.2.0'
替代
implementation 'com.google.android.play:core:1.10.3'
上传过审了