在Play商店中导入APK

问题描述 投票:0回答:1

在Play商店导入我的第一个APK时遇到一些困难。一个简单的WebView应用程序。

我有这个错误消息:

输入错误。您指定的域名“https://chimeria.net”无效输入有效的域名。

其中qazxsw poi是WebView中嵌入式网站的网址...

在我阅读的文件后(https://chimeria.net):

我从“我的开发人员”游戏商店页面的“应用程序签名”选项卡中获取了SHA256值。

https://chimeria.net/.well-known/assetlinks.json

  • 我在app的AndroidManifest.xml中添加了这一行:

  • 我在应用程序的res / values / strings.xml文件中添加了这个

<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>
  • 该应用程序是使用Android Studio(Android App Bundle)创建的,它给了我一个.aab文件。

无论我尝试什么,我的应用程序都被拒绝了,因为链接未被接受。最后,我浪费了一天所有可能的事情。有人会知道我做错了什么吗?

谢谢你的帮助

android upload google-play apk
1个回答
0
投票

<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>是主持人,chimeria.nethttps是该计划。

您可能希望将清单更改为:

http
© www.soinside.com 2019 - 2024. All rights reserved.