1

How to register a new MIME type in android? I am very much new to android. I need to download a *.ics file from the browser (Email attachment).but the browser response is unsupported file format.Can anyone help me ???

Sumithran
  • 261
  • 2
  • 4
  • 10

1 Answers1

0

Android intent filter for a particular file extension?

How to open email attachment in my app on android?

How to send/open email attachments from android app?

For iCalendar, that means you will need an activity with the following <intent-filter>:

    <intent-filter>
        <category android:name="android.intent.category.DEFAULT" />
        <action android:name="android.intent.action.VIEW" />
        <data android:mimeType="text/calendar" />
    </intent-filter>
Community
  • 1
  • 1
CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491