作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试为即时应用程序上传我的 .aab 时,出现以下错误:
上传失败您应该同时使用 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/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!