Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Intents and Broadcast Receivers Implicit Intents and Intent Filters Creating Intent Filters

Robin Damsgaard Larsen
Robin Damsgaard Larsen
13,929 Points

Coding challenge not accepting (correct?) mimeTypes

I browsed the docs via the provided link in the challenge, and in the section on Music or Video, it says to define mimeTypes as " video/* " and " audio/* " for catch-all intent filters. Along with "plain/text", that's exactly what I've done, but the solution is being rejected. It seems like a rather simple assignment, but if it isn't the video and audio mime types stated above, I really don't know what it is.

AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.teamtreehouse.timetraveler"
          xmlns:android="http://schemas.android.com/apk/res/android">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

        <activity android:name=".TimeTravelActivity">
          <intent-filter>
            <action android:name="android.intent.action.SEND"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:mimeType="plain/text"/>
            <data android:mimeType="image/*"/>
            <data android:mimeType="video/*"/>
          </intent-filter>
        </activity>
    </application>

</manifest>
Robin Damsgaard Larsen
Robin Damsgaard Larsen
13,929 Points

Right, so I copied and pasted the three data elements from one of the other posts answering a similar question, and it worked. It turns out I had written "plain/text" (as you can see in the code above) instead of the correct "text/plain". Silly me.