在Play商店中导入我的第一个APK时遇到一些困难。一个简单的WebView应用。
我收到此错误消息:
导入错误。 您指定的域名“ https://chimeria.net”无效 输入有效的域名。
其中https://chimeria.net是WebView中嵌入网站的网址...
在阅读完文档后,我读了(https://developers.google.com/digital-asset-links/v1/getting-started):
我从“我的开发者”游戏商店页面的“应用程序签名”标签中获取了SHA256值。
screenshot of where i picked up the SHA546 KEY
<meta-data android:name="asset_statements" android:resource="@string/asset_statements" />
<string name="asset_statements">
[{
\"relation\": [\"delegate_permission/common.share_location\"],
\"target\": {
\"namespace\": \"web\",
\"site\": \"https://chimeria.net\"
}
}]
</string>
<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" android:host="https://chimeria.net" />
<data android:scheme="https" />
</intent-filter>
无论我尝试了什么,我的应用都被拒绝了,因为该链接未被接受。 最后,我一天浪费了所有可能的尝试。 有人知道我在做什么错吗?
感谢您的帮助
答案 0 :(得分:0)
chimeria.net
是主机,https
或http
是方案。
您可能希望将清单更改为:
<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" android:host="chimeria.net" />
<data android:scheme="https" android:host="chimeria.net" />
</intent-filter>