代码之家  ›  专栏  ›  技术社区  ›  dev90

Firebase dynamic link继续开放游戏商店

  •  0
  • dev90  · 技术社区  · 7 年前

    我创建了一个动态链接 https://abc.test.link/test

    并在 SplashActivity 意图过滤器。

      <intent-filter>
    
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <category android:name="android.intent.category.BROWSABLE"/>
            <data
                android:host="abc.test.link"
                android:scheme="https"
                android:path="/test " />
        </intent-filter>
    

    我正在从浏览器打开URL,它会在我的设备中启动play store,无论是否安装了应用程序。

    如果我从 playstore 然后它工作正常,并启动应用程序,如果它安装在设备中。

    但是我想在debug apk中测试这个场景。有没有办法从firebase动态链接启动调试安装的apk。

    0 回复  |  直到 7 年前