Custom File Build settings For Android

Hi, 

I am trying to put these settings in the build.settings file for Android but don’t know how to to it because the data have 2 schemes and multiple pathPatterns. Any suggestions?

\<intent-filter\> &nbsp;&nbsp;&nbsp; \<action android:name="android.intent.action.VIEW" /\> &nbsp;&nbsp;&nbsp; \<category android:name="android.intent.category.DEFAULT" /\> &nbsp;&nbsp;&nbsp; \<category android:name="android.intent.category.BROWSABLE" /\> &nbsp;&nbsp;&nbsp; \<data android:scheme="file" /\> &nbsp;&nbsp;&nbsp; \<data android:scheme="content" /\> &nbsp;&nbsp;&nbsp; \<data android:mimeType="\*/\*" /\> &nbsp;&nbsp;&nbsp; \<!-- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Work around Android's ugly primitive PatternMatcher &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; implementation that can't cope with finding a . early in &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the path unless it's explicitly matched. &nbsp;&nbsp;&nbsp; --\> &nbsp;&nbsp;&nbsp; \<data android:host="\*" /\> &nbsp;&nbsp;&nbsp; \<data android:pathPattern=".\*\\.sfx" /\> &nbsp;&nbsp;&nbsp; \<data android:pathPattern=".\*\\..\*\\.sfx" /\> &nbsp;&nbsp;&nbsp; \<data android:pathPattern=".\*\\..\*\\..\*\\.sfx" /\> &nbsp;&nbsp;&nbsp; \<data android:pathPattern=".\*\\..\*\\..\*\\..\*\\.sfx" /\> &nbsp;&nbsp;&nbsp; \<!-- keep going if you need more --\> \</intent-filter\>

I tried something like this, but I don’t know how to do with the second scheme (<data android:scheme=“content” />) and multiple android:pathPatterns

android = { intentFilters = { { actions = { "android.intent.action.VIEW" , }, categories = { "android.intent.category.DEFAULT", "android.intent.category.BROWSABLE", }, data = { scheme = "file", host = "\*" , mimeType = "\*/\*", pathPattern = ".\*\\.sfx" }, }, }, },

What I am trying to do is when I tap a custom file ( say  file1.sfx ) in my email. A list of applications will pop up and I can choose my android app to open it. I’ve already done this on iOS. I am trying to do this Android. Any suggestions?