Created
November 22, 2021 21:31
This file contains 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
<activity android:name="com.company.app.DetailActivity" > | |
<intent-filter> | |
<action android:name="android.intent.action.VIEW" /> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<category android:name="android.intent.category.BROWSABLE" /> | |
<data android:host="open.androiddemoapp.com" android:scheme="https" /> | |
<data android:host="open.androiddemoapp.com" android:scheme="http" /> | |
</intent-filter> | |
<!--App Linking SDK reads content on the clipboard each time the app is launched.--> | |
<meta-data android:name="com.huawei.agconnect.applinking.READ_CLIPBOARD_PERMISSION" android:value="Available" /> | |
</activity> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment