Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Native-side Code:

Code Block
languagebashxml
<activity android:name="DeeplinkActivity" android:label="@string/app_name" >
	<intent-filter android:label="@string/app_name">
		<action android:name="android.intent.action.VIEW" />
			<category android:name="android.intent.category.DEFAULT" />
			<category android:name="android.intent.category.BROWSABLE" />
				/* The following attribute must be changed to identify your respective URL scheme. */
				<data android:scheme="ctmodelhouse" android:host="canvas" />
	</intent-filter>
</activity> 

...