是否可以在 Eclipse 中仅为 GCM 构建 google 播放服务库?
Is it possible to build google play service lib only for GCM in eclipse?
我在 eclipse 中创建了一个 android 应用程序。在 google Play 商店上传应用程序时,
Google 在其 Google Play 开发者控制台的定价和分发页面上添加了一个新选项,要求发布商声明是否有广告。我收到以下警告消息。
We detected Ad SDKs in one or more of your active APKs:
version: XXXXX, sdk: AdMob
If your app is serving ads, please change your ads declaration to
'Yes'. Failure to accurately declare the presence of ads is a policy
violation and may result in your app's removal from Google Play. You
can visit our Help Center to learn more.
我们的应用程序没有广告,但我们被标记为具有 AdMob SDK。我认为这是因为我们正在使用 google 播放服务库,其中包括对 AdMob 的传递依赖性。
是否可以在 eclipse 中为 GCM 构建 google 播放服务库?
如果是,那怎么办?
我对eclipse不是很了解。但是在 android 工作室中我们可以做到这一点。
Google 云消息
com.google.android.gms:play-services-gcm:8.3.0
上查看更多信息
去找 android studio dude,Google play services 有一个单独的实例用于 Google Could messaging,你可以像这样将它添加到 gradle 中。
compile 'com.google.android.gms:play-services-gcm:x.x.x'
我在 eclipse 中创建了一个 android 应用程序。在 google Play 商店上传应用程序时, Google 在其 Google Play 开发者控制台的定价和分发页面上添加了一个新选项,要求发布商声明是否有广告。我收到以下警告消息。
We detected Ad SDKs in one or more of your active APKs:
version: XXXXX, sdk: AdMob
If your app is serving ads, please change your ads declaration to 'Yes'. Failure to accurately declare the presence of ads is a policy violation and may result in your app's removal from Google Play. You can visit our Help Center to learn more.
我们的应用程序没有广告,但我们被标记为具有 AdMob SDK。我认为这是因为我们正在使用 google 播放服务库,其中包括对 AdMob 的传递依赖性。
是否可以在 eclipse 中为 GCM 构建 google 播放服务库?
如果是,那怎么办?
我对eclipse不是很了解。但是在 android 工作室中我们可以做到这一点。
Google 云消息
com.google.android.gms:play-services-gcm:8.3.0
上查看更多信息
去找 android studio dude,Google play services 有一个单独的实例用于 Google Could messaging,你可以像这样将它添加到 gradle 中。
compile 'com.google.android.gms:play-services-gcm:x.x.x'