Skip to content

Instantly share code, notes, and snippets.

@uc-sja
Created July 12, 2022 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uc-sja/8bb33061ac371404039ca2eae096b9f6 to your computer and use it in GitHub Desktop.
Save uc-sja/8bb33061ac371404039ca2eae096b9f6 to your computer and use it in GitHub Desktop.
Androidmanifest of server app
<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