标签: applinks

Android 应用程序链接与启动相同活动的多个域

这是我的AndroidManifest.xml文件

<activity
    android:name=".activity.LaunchActivity"
    android:autoVerify="true"
    android:configChanges="orientation|keyboardHidden|screenSize|screenLayout"
    android:label="@string/app_name"
    android:noHistory="true">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </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:host="subdomain1.domain.ext"
            android:path="/path1/subpath1/.*"
            android:scheme="https" />
    </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:host="subdomain1.domain.ext"
            android:pathPattern="/path2/subpath2/..*"
            android:scheme="https" />
    </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:host="subdomain2.subdomain1.domain.ext"
            android:pathPattern="^..*"
            android:scheme="https" />
    </intent-filter>
</activity>
<activity
    android:name=".activity.LoginActivity"
    android:configChanges="orientation|keyboardHidden|screenSize|screenLayout"
    android:label="@string/app_name" />
<activity
    android:name=".activity.MainActivity"
    android:configChanges="orientation|keyboardHidden|screenSize|screenLayout"
    android:label="@string/app_name" />
Run Code Online (Sandbox Code Playgroud)

我想使用 2 个域的 Android …

android intentfilter android-manifest android-intent applinks

2
推荐指数
1
解决办法
7905
查看次数

如何在HMS华为设备上支持应用联动

现在我们所说的华为设备,是指 2019 年 5 月 16 日之后发布的设备,这些设备不带 Google 移动服务

在华为支持应用链接的开发过程中,出现了一些问题,并提出了以下问题:

  1. 为什么谷歌应用程序链接在华为上不起作用?
  2. 如何在华为设备上支持它们?
  3. 如何通过应用程序链接共享数据

android applinks android-app-links huawei-mobile-services huawei-developers

2
推荐指数
1
解决办法
1939
查看次数

App Link是否可以与testflight(iOS)安装的应用程序一起使用?

我是App Link的新手并学习基础知识.我正在查看文档,但找不到这个问题的答案.我们正在进行beta测试,使用Testflight和外部测试人员.我们希望将FB中的App Link直接用于我们应用中的项目(或将用户引导至我们的网页,以便他们签署测试版).我想知道App Links和应用程序索引是否适用于通过Testfligth而不是Apple App Store安装的应用程序?谢谢您的帮助!

facebook deep-linking ios testflight applinks

1
推荐指数
1
解决办法
673
查看次数

如何在android marshmallow上实现app链接?

Android 6.0中的应用程序链接正在更改,因此Android可以更好地了解哪些应用程序可以直接打开内容,而不是每次都使用对话框停止用户.

我该如何实现它?

android applinks android-6.0-marshmallow

1
推荐指数
1
解决办法
987
查看次数

Deeplink on click opens intent chooser in android

I have implemented deeplinking in one for my activities. But when the link is clicked, an Intent chooser opens asking whether to open from the app or from the browser. How to open from app directly?

Also, when the app is not installed, it does not take to playstore. It opens in the browser.

Below is my code in the manifest :

<activity android:name=".activities.VideoNewsDetailActivity"
        android:theme="@style/AppThemeActivity"
        android:configChanges="orientation|screenSize"
        >
        <!-- Add this new section to your Activity -->
        <intent-filter android:label="@string/videoNewsDetail">
            <action android:name="android.intent.action.VIEW" …
Run Code Online (Sandbox Code Playgroud)

android deep-linking applinks deeplink

0
推荐指数
1
解决办法
1197
查看次数