android – 运行使用@string作为主机名的Instant App时,“未在清单中定义URL”
作者:互联网
当@string值用于主机名时(在“清单中未定义URL”错误),查看在Android Studio中运行Instant App的问题.例如:
<data android:scheme="https" android:host="@string/SOME_DOMAIN" />
如果android:host设置为原始域字符串,这工作正常.我可以通过在从AS运行/调试时将该值设置为特定域值来解决这个问题但不理想(总是有可能推送包含硬编码字符串的代码!)
此外,如果我从命令行构建/部署base和feature apx并使用adb shell启动-w -a android.intent.action.VIEW -d“< my url>”
解决方法:
也许这是因为它不是主要的
Manifest.xml
,但调试清单..尝试编辑
app/src/main/Manifest
注意:与正式RFC不同,Android框架中的主机名匹配区分大小写.因此,您应始终使用小写字母指定主机名.
Reference Android developer String Resources
标签:android,android-studio-3-0,android-instant-apps 来源: https://codeday.me/bug/20190710/1426769.html