Created
July 12, 2022 03:31
-
-
Save uc-sja/8bb33061ac371404039ca2eae096b9f6 to your computer and use it in GitHub Desktop.
Androidmanifest of server app
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 xmlns:android="http://schemas.android.com/apk/res/android"> | |
... | |
<application> | |
... | |
<activity | |
android:name=".FileSelectActivity" | |
android:label="@File Selector" > | |
<intent-filter> | |
<action | |
android:name="android.intent.action.PICK"/> | |
<category | |
android:name="android.intent.category.DEFAULT"/> | |
<category | |
android:name="android.intent.category.OPENABLE"/> | |
<data android:mimeType="text/plain"/> | |
<data android:mimeType="image/*"/> | |
</intent-filter> | |
</activity> | |
. | |
. | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment