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 trialGuy Bridge
Android Development Techdegree Graduate 24,991 PointsMake sure you have the right mimeTypes for text, images, and videos (check the docs for help).
Hi Guys,
I'm trying to get past this question about mimeTypes and Intent filters in the manifest. It wants me to add 3 different types of mimeTyes for text, audio, and image which I think i've done but it doesn't like it.
<?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="text/plain"/>
<data android:mimeType="audio/*" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
</application>
</manifest>
2 Answers
Seth Kroger
56,413 PointsThe challenge is asking you to accept "plain text, video, and image messages" but your mime types are for plain text, audio and image messages
Guy Bridge
Android Development Techdegree Graduate 24,991 PointsThank you, yes I needed to put in
<data android:mimeType="video/*" />