I'm doing everything to register my activity to respond to a a file with extension .wcd and I've done this but it's not being received when i try to share it this is my code so far..
<activity
android:name="package.app.activity"
android:exported="true"
android:label="@string/title_activity_name" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.wcd" />
<data android:pathPattern=".*\\..*\\.wcd" />
<data android:pathPattern=".*\\..*\\..*\\.wcd" />
<data android:pathPattern=".*\\..*\\..*\\..*\\.wcd" />
<data android:host="*" />
</intent-filter>
</activity>
all I'm trying to do is let my activity respond to all files with extension .wcd so I can use it,despite it's source.. I've searched for other questions and I don't know why mine does not work, am I leaving something out, or is there something I'm not doing, I've also read the documentation that's why I even added
android:exported="true"
any bail out?? thanks in advance for help..