1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="rs.example.android.com.healingbrush" > 4 5 <uses-sdk 6 android:minSdkVersion="16" 7 android:targetSdkVersion="19" /> 8 9 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 10 11 <application 12 android:allowBackup="true" 13 android:icon="@drawable/ic_launcher" 14 android:label="@string/app_name" 15 android:largeHeap="true" 16 17 android:theme="@style/AppTheme" > 18 <activity 19 android:name=".MainActivity" 20 android:label="@string/app_name" > 21 <intent-filter> 22 <action android:name="android.intent.action.MAIN" /> 23 24 <category android:name="android.intent.category.LAUNCHER" /> 25 </intent-filter> 26 <intent-filter> 27 <action android:name="android.intent.action.SEND" /> 28 <category android:name="android.intent.category.DEFAULT" /> 29 <data android:mimeType="image/*" /> 30 </intent-filter> 31 32 </activity> 33 </application> 34 35</manifest> 36