Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/193.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android即时应用程序深度链接错误-仅提供一个URL_Android_Google Play_Deep Linking - Fatal编程技术网

Android即时应用程序深度链接错误-仅提供一个URL

Android即时应用程序深度链接错误-仅提供一个URL,android,google-play,deep-linking,Android,Google Play,Deep Linking,我正在尝试创建游戏的即时应用程序版本 我的主游戏有深度链接(和/或应用程序链接,我真的不知道区别),我希望即时应用程序也有它。通过访问,如果用户安装了MyApp,它将启动,我将读取代码参数。这部分工作正常。我的目标是,当用户没有安装MyApp时,我希望即时应用能够启动 我跟踪了我找到的所有文档,但当我上传到Google Play时,我总是遇到同样的错误。我在Google上搜索了错误消息,发现0次点击,这让我有点紧张:)我正在联系Google Play支持部门,如果我找到解决方案,我会在这里发布

我正在尝试创建游戏的即时应用程序版本

我的主游戏有深度链接(和/或应用程序链接,我真的不知道区别),我希望即时应用程序也有它。通过访问,如果用户安装了MyApp,它将启动,我将读取代码参数。这部分工作正常。我的目标是,当用户没有安装MyApp时,我希望即时应用能够启动

我跟踪了我找到的所有文档,但当我上传到Google Play时,我总是遇到同样的错误。我在Google上搜索了错误消息,发现0次点击,这让我有点紧张:)我正在联系Google Play支持部门,如果我找到解决方案,我会在这里发布

错误消息是:

“您必须为即时应用程序APK提供一个默认URL。”

有人知道那是什么意思吗

我可以上传我的主应用程序,没有错误消息。即时应用程序是一个给我错误信息的应用程序。deeplink在主应用程序中运行良好

我的主应用程序AndroidManifest.xml(相关部分):


我的即时应用程序AndroidManifest.xml(相关部分):



感谢

即时应用已安装在用户设备中?该错误是当我将即时应用上载到Google Play Dev控制台(使用我的计算机)时发生的,与设备或任何东西无关。即时应用已安装在用户设备中?该错误是当我将即时应用上载到Google Play Dev控制台(使用我的计算机)时发生的,与设备或任何东西无关。
      <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="mygame.mycompany.com" android:pathPattern="/join" />
      </intent-filter>
      <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="mygame" />
      </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" android:host="mygame.mycompany.com" android:pathPattern="/join" />
        <data android:scheme="https"/>
      </intent-filter>