Created
June 2, 2021 19:23
-
-
Save Oleur/7f0b4aafc10139c23585d2a825eba000 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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