Bubblewrap 不会构建支持 Play Billing 5 的 .aab

Bubblewrap don't building .aab with supports for Play Billing 5

提问人:Gustavo Lins 提问时间:8/28/2023 最后编辑:Gustavo Lins 更新时间:8/28/2023 访问量:53

问:

将 .aab 上传到 Play 管理中心后,收到警告,提示我的应用使用的是 Play 结算 4.0.0,需要更新到 5.0.0 或更高版本。

我尝试在文件“build.grade”中引入以下代码:

    dependencies {
        def billingVersion = "5.0.0"
        implementation "com.android.billingclient:billing:$billingVersion"
    }

使用 Bubblewrap 更新后,继续出现相同的问题!

我的twa-manifest.json:

{
  "packageId": "br.com.aquialimentacao.www.twa",
  "host": "www.aquialimentacao.com.br",
  "name": "Aqui Alimentação",
  "launcherName": "Aqui Alimentação",
  "display": "standalone",
  "themeColor": "#BC132B",
  "navigationColor": "#000000",
  "navigationColorDark": "#000000",
  "navigationDividerColor": "#000000",
  "navigationDividerColorDark": "#000000",
  "backgroundColor": "#BC132B",
  "enableNotifications": true,
  "startUrl": "/",
  "iconUrl": "https://www.aquialimentacao.com.br/img/app-icons/app-icon-512x512.png",
  "maskableIconUrl": "https://www.aquialimentacao.com.br/img/app-icons/app-icon-512x512-maskable.png",
  "splashScreenFadeOutDuration": 1000,
  "signingKey": {
    "path": "/home/guga/Documentos/Profissional/Projetos/aqui_alimentacao/TWA/1.0.9/android.keystore",
    "alias": "AA"
  },
  "appVersionName": "12",
  "appVersionCode": 12,
  "shortcuts": [],
  "generatorApp": "bubblewrap-cli",
  "webManifestUrl": "https://www.aquialimentacao.com.br/manifest.json",
  "fallbackType": "customtabs",
  "features": {
    "playBilling": {
      "enabled": true
    },
    "locationDelegation": {
      "enabled": true
    }
  },
  "alphaDependencies": {
    "enabled": true
  },
  "enableSiteSettingsShortcut": true,
  "isChromeOSOnly": false,
  "isMetaQuest": false,
  "fullScopeUrl": "https://www.aquialimentacao.com.br/",
  "minSdkVersion": 19,
  "orientation": "portrait",
  "fingerprints": [],
  "additionalTrustedOrigins": [],
  "retainedBundles": [],
  "appVersion": "12"
}
Trusted-Web-Activity Bubblewrap 可信的 Web 活动 Bubblewrap

评论


答: 暂无答案