Skip to content

Instantly share code, notes, and snippets.

@elsennov
Created February 24, 2016 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elsennov/7ad35a4cc7a09f4b18ba to your computer and use it in GitHub Desktop.
Save elsennov/7ad35a4cc7a09f4b18ba to your computer and use it in GitHub Desktop.
<activity
android:name=".ProductDetailActivity"
android:label="Product Detail"
android:screenOrientation="portrait"
android:theme="@style/ProductDetailTheme">
<intent-filter>
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />
<data
android:host="@string/coral_web_host"
android:pathPrefix="@string/product_detail_web_path"
android:pathPattern="@string/coral_web_pattern"
android:scheme="@string/coral_web_scheme" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment