【问题标题】:How to Inject host and schema in AndroidManifest.xml for Android Deeplinking如何在 AndroidManifest.xml 中为 Android Deeplinking 注入主机和架构
【发布时间】:2021-01-06 00:37:24
【问题描述】:

我正在尝试使用 build.gradle 作为 referenecd here 将 url 架构和路径动态注入到我的 AndroidManifest.xml 文件中

但是,这不允许触发深层链接。

当我在 AndroidManifest.xml 中使用静态值时,我测试了我的深度链接工作。

            // AndroidManifest.xml
            <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="${appScheme}"
                android:host="${hostName}"
                android:path="/path2" />

            <data
                android:scheme="${appScheme}"
                android:host="${hostName}"
                android:path="/path1" />
        </intent-filter>




// build.gradle (:app)
defaulConfig {
        manifestPlaceholders = [
        hostName: "www.host_name.com",
        appScheme: "https"
    ]
}


  demo {
        resValue "string", "hostName", "www.host_demo.com"
        resValue "string", "appScheme", "https"
    }

    staging {
        resValue "string", "hostName", "www.host_staging.com"
        resValue "string", "appScheme", "http"
    }

【问题讨论】:

  • However, this does not allow deeplinks to trigger. 是什么意思?它不能与每种风味定义的 resValue 一起使用吗?

标签: android android-manifest deep-linking


【解决方案1】:

我认为您可以在这里做的是在您的 defaultConfig 中定义这些字符串,如下所示:

android {
    ...
    defaultConfig {
        ...
        flavorDimensions 'yourAppName'

        resValue "string", "host_name", "www.live_demo.com"
        resValue "string", "app_scheme", "http"

        productFlavors {
            demo {
                dimension 'yourAppName'
                resValue "string", "host_name", "www.host_demo.com"
            }

            staging {
                dimension 'yourAppName'
                resValue "string", "host_name", "www.host_staging.com"
            }
        }
    }
    ...
}

重建后,如果您希望使用您在代码中定义的 productFlavours,将为您生成 host_nameapp_scheme。这对我处理的每个项目都适用:)

app/build/generated/res/resValues/debug/values/gradleResValues.xml
app/build/generated/res/resValues/demo/values/gradleResValues.xml
app/build/generated/res/resValues/staging/values/gradleResValues.xml

然后从您的AndroidManifest.xml 文件中,您可以调用@string/host_name 而不是${hostName}

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data
            android:scheme="@string/app_scheme"
            android:host="@string/host_name"
            android:path="/path2" />

        <data
            android:scheme="@string/app_scheme"
            android:host="@string/host_name"
            android:path="/path1" />
    </intent-filter>

PS:我更喜欢用蛇形大小写来定义字符串资源。 :)

【讨论】:

  • 将 resValue 移动到 defaultConfig 有效。谢谢! PS:我将字符串定义为 camelCase,因为文档就是这样做的。
  • 啊,我明白了,太好了! :)
猜你喜欢
  • 2021-11-14
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2018-06-01
  • 2017-01-19
相关资源
最近更新 更多