0

我已在我的应用程序中集成了同意书。如果我在调试模式下运行应用程序,它将显示出来。如果我构建并安装签名的 APK,将显示同意书。

如果我从 Play 商店下载该应用程序,我不会收到任何错误消息,并且会到达以下代码。内部的代码consentInformation.request...将无法访问。

   consentInformation = ConsentInformation.getInstance(this);
   String[] publisherIds = {"pub-xxx"};
   consentInformation.requestConsentInfoUpdate(publisherIds, new ConsentInfoUpdateListener() {
      @Override
        public void onConsentInfoUpdated(ConsentStatus consentStatus) {
        **//*seems to be not reached**
        ...
        }
   }

因此不显示同意 - 但仅在从 Play 商店下载时。

是否有错误或错过了什么?

谢谢GGK

4

1 回答 1

0

无论出于何种原因:

minifyEnabled false
shrinkResources false 

解决了这个问题。更多请看这里AnswerID 1

于 2020-09-08T13:48:04.693 回答