Skip to content

Instantly share code, notes, and snippets.

@Oleur
Created June 2, 2021 19:23
Show Gist options
  • Save Oleur/7f0b4aafc10139c23585d2a825eba000 to your computer and use it in GitHub Desktop.
Save Oleur/7f0b4aafc10139c23585d2a825eba000 to your computer and use it in GitHub Desktop.
<manifest>
<application>
<activity android:name=".MyActivity">
<intent-filter
android:autoVerify="true"
tools:targetApi="m">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="aircall-test.io"
android:scheme="https" />
</intent-filter>
</activity>
<!-- Add an indication where to find the actions.xml -->
<meta-data
android:name="com.google.android.actions"
android:resource="@xml/actions" />
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment