<tfoot id='2psnr'></tfoot>
  • <legend id='2psnr'><style id='2psnr'><dir id='2psnr'><q id='2psnr'></q></dir></style></legend>
      <bdo id='2psnr'></bdo><ul id='2psnr'></ul>

    1. <small id='2psnr'></small><noframes id='2psnr'>

      1. <i id='2psnr'><tr id='2psnr'><dt id='2psnr'><q id='2psnr'><span id='2psnr'><b id='2psnr'><form id='2psnr'><ins id='2psnr'></ins><ul id='2psnr'></ul><sub id='2psnr'></sub></form><legend id='2psnr'></legend><bdo id='2psnr'><pre id='2psnr'><center id='2psnr'></center></pre></bdo></b><th id='2psnr'></th></span></q></dt></tr></i><div id='2psnr'><tfoot id='2psnr'></tfoot><dl id='2psnr'><fieldset id='2psnr'></fieldset></dl></div>

        Google Play:我们在您的应用程序中发现了广告 SDK

        Google Play: We found Ad SDKs in your application(Google Play:我们在您的应用程序中发现了广告 SDK)
        • <tfoot id='YrMBX'></tfoot>
              <bdo id='YrMBX'></bdo><ul id='YrMBX'></ul>

              1. <small id='YrMBX'></small><noframes id='YrMBX'>

                <legend id='YrMBX'><style id='YrMBX'><dir id='YrMBX'><q id='YrMBX'></q></dir></style></legend>
                <i id='YrMBX'><tr id='YrMBX'><dt id='YrMBX'><q id='YrMBX'><span id='YrMBX'><b id='YrMBX'><form id='YrMBX'><ins id='YrMBX'></ins><ul id='YrMBX'></ul><sub id='YrMBX'></sub></form><legend id='YrMBX'></legend><bdo id='YrMBX'><pre id='YrMBX'><center id='YrMBX'></center></pre></bdo></b><th id='YrMBX'></th></span></q></dt></tr></i><div id='YrMBX'><tfoot id='YrMBX'></tfoot><dl id='YrMBX'><fieldset id='YrMBX'></fieldset></dl></div>
                  <tbody id='YrMBX'></tbody>

                  本文介绍了Google Play:我们在您的应用程序中发现了广告 SDK的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  Google 在其 Google Play 开发者控制台的定价和分发页面上添加了一个新选项,要求发布商声明他们是否有广告.我们的应用没有广告,但我们被标记为有 AdMob SDK.

                  Google has put a new option on their Pricing and Distribution page of their Google Play Developer Console that requires publishers to declare if they have ads or not. Our app does not have ads, yet we are being flagged as having the AdMob SDK.

                  我们在您的一个或多个活动 APK 中检测到广告 SDK:

                  We detected Ad SDKs in one or more of your active APKs:

                  version: XXXXX, sdk: AdMob
                  

                  如果您的应用正在投放广告,请将您的广告声明更改为'是的'.未能准确声明存在广告是一项政策违规行为,并可能导致您的应用从 Google Play 下架.你可以访问我们的帮助中心了解更多信息.

                  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.

                  据我从 Gradle 文件中得知,我们没有 AdMob:

                  We don't have AdMob, as far as I can tell from our Gradle file:

                  dependencies {
                      compile fileTree(dir: 'libs', include: ['*.jar'])
                      compile 'me.dm7.barcodescanner:zxing:1.7.2'
                      compile 'com.google.android.gms:play-services:8.3.0'
                      compile 'com.android.support:appcompat-v7:23.1.0'
                      compile 'com.android.support:cardview-v7:23.1.0'
                      compile 'com.android.support:recyclerview-v7:23.1.0'
                  }
                  

                  什么可能导致这种依赖出现?我怎样才能摆脱它?

                  What might be causing that dependency to show up? How can I get rid of it?

                  推荐答案

                  您可以运行 gradlew -q dependencies app:dependencies 来查看每个配置的依赖项(包括所有传递依赖项).

                  You can run gradlew -q dependencies app:dependencies to see a the dependencies (including all transitive dependencies) for each of your configurations.

                  也可以指定单个配置,比如用--configuration releaseCompile

                  You can also specify a single configuration, such as with --configuration releaseCompile

                  在您的情况下,您会发现 Google Play 服务包含对 AdMob 的传递依赖.

                  In your case, you will find that Google Play Services includes a transitive dependency on AdMob.

                  您可以通过仅使用 Play 服务的单个组件(例如 play-services-location) 而不是整个 Play 服务.但是,您可能会发现您使用的单个组件之一仍然依赖于 AdMob.例如,play-services-analytics 版本 8.1.0 对 play-services-ads 具有传递依赖,即 AdMob SDK.

                  You can mitigate this by using only individual components of Play Services (such as play-services-location) instead of the entirety of Play Services. However, you may find that one of the individual components you use still relies on AdMob. For example, version 8.1.0 of play-services-analytics has a transitive dependency on play-services-ads, which is the AdMob SDK.

                  这篇关于Google Play:我们在您的应用程序中发现了广告 SDK的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Android - Is it possible to get install referrer programmatically(Android - 是否有可能以编程方式安装引荐来源网址)
                  How to sign an APK with more than one certificate?(如何使用多个证书签署 APK?)
                  versionCode vs versionName in Android Manifest(Android Manifest 中的 versionCode 与 versionName)
                  What does this Google Play APK publish error message mean?(这个 Google Play APK 发布错误消息是什么意思?)
                  Lost my keystore for uploaded app on android market(丢失了我在 android 市场上上传的应用程序的密钥库)
                  App on Google Play always shows quot;Updatequot; instead of open(Google Play 上的应用程序总是显示“更新;而不是打开)
                    <i id='3e29E'><tr id='3e29E'><dt id='3e29E'><q id='3e29E'><span id='3e29E'><b id='3e29E'><form id='3e29E'><ins id='3e29E'></ins><ul id='3e29E'></ul><sub id='3e29E'></sub></form><legend id='3e29E'></legend><bdo id='3e29E'><pre id='3e29E'><center id='3e29E'></center></pre></bdo></b><th id='3e29E'></th></span></q></dt></tr></i><div id='3e29E'><tfoot id='3e29E'></tfoot><dl id='3e29E'><fieldset id='3e29E'></fieldset></dl></div>

                    <small id='3e29E'></small><noframes id='3e29E'>

                    <tfoot id='3e29E'></tfoot>
                        <tbody id='3e29E'></tbody>

                        • <legend id='3e29E'><style id='3e29E'><dir id='3e29E'><q id='3e29E'></q></dir></style></legend>

                            <bdo id='3e29E'></bdo><ul id='3e29E'></ul>