1

ディープリンク URI で文字列定数を使用することはできますか?

現在、ホスト部分の重複につながるリンクがいくつかあります。

<deepLink app:uri="www.host.com/a" />
<deepLink app:uri="www.host.com/b" />
<deepLink app:uri="www.host.com/c" />
<deepLink app:uri="www.host.com/d" />

したがって、何とか抽出する方法を探していますwww.host.com

私は単純にそれを次の場所に抽出しようとしましたstrings.xml:

<string name="host">www.host.com</string>

その後:

<deepLink app:uri="{@string/host}/details/{id}" />

しかし、これは機能しません (Improper use of wildcards and/or placeholders in deeplink URI hostコンパイル エラー)

4

1 に答える 1