gpt4 book ai didi

android - 即时应用程序上传失败 - http 和 https 方案都应该是

转载 作者:行者123 更新时间:2023-11-29 22:47:27 25 4
gpt4 key购买 nike

当我尝试为即时应用程序上传我的 .aab 时,出现以下错误: Google Play error

上传失败您应该同时使用 http 和 https 作为您的网络 Intent 过滤器的方案。

我尝试了多个版本的声明我的 SplashActivity 与 web intent-filters 但没有一个被 Google Play 接受。这是我从 .aab 中读取的最终 AndroidManifest.xml。

<activity
android:name="com.xxx.SplashActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/Theme.AppCompat.NoActionBar"
android:windowSoftInputMode="adjustNothing" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

<meta-data
android:name="default-url"
android:value="https://test.static.freeworld.cloud/start" />

<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="@string/scheme" />
<data android:host="@string/app_local_host" />
<data android:pathPrefix="/start" />
<data android:pathPrefix="/station" />
</intent-filter>
<intent-filter android:autoVerify="true" >
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="test.static.freeworld.cloud" />
<data android:pathPrefix="/start" />
</intent-filter>
</activity>

有什么帮助吗?

最佳答案

不确定这是否能解决您的问题,但我在上传免安装应用程序 (.aab) 时也遇到了问题。在我们的案例中,我们收到了错误消息,指出您不允许在即时启用的模块中使用自定义方案 Intent 过滤器。

您可以尝试 bundletool ( https://developer.android.com/studio/command-line/bundletool ) 来验证您的 .aab 包是否已正确转换为 .apk 文件。

或者,您也可以使用免安装应用验证工具(位于 ~/Library/Android/sdk/extras/google/instantapps/ia on osx)来验证您的免安装应用。

关于android - 即时应用程序上传失败 - http 和 https 方案都应该是,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58216426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com