我需要更新gradle文件(智能手机)中的播放服务版本,因为我添加了模块磨损。但是当我重新加入时:
compile 'com.google.android.gms:play-services:6.1.71'
通过
'com.google.android.gms:play-services-wearable:8.4.0'
我有这些消息:
No resource identifier found for attribute 'adSize' in package
和
No resource identifier found for attribute 'adUnitId' in package
你知道它可能来自哪里吗?
答案 0 :(得分:0)
您已使用仅可穿戴设备替换了整个播放服务依赖关系。看起来你有广告?如果是这种情况,请将以下内容添加到gradle依赖项中:
compile 'com.google.android.gms:play-services-ads:9.0.2'
如果您有任何其他游戏服务,您应该查找他们的特定依赖关系here并添加它们。