Home | History | Annotate | Download | only in Refocus
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.android.rs.refocus" >
      4     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
      5     <uses-sdk android:targetSdkVersion="21" />
      6     <application
      7         android:allowBackup="true"
      8         android:icon="@mipmap/ic_launcher"
      9         android:label="@string/app_name">
     10         <activity
     11             android:name=".MainActivity"
     12             android:label="@string/app_name" >
     13             <intent-filter>
     14                 <action android:name="android.intent.action.MAIN" />
     15 
     16                 <category android:name="android.intent.category.LAUNCHER" />
     17             </intent-filter>
     18             <intent-filter>
     19                 <action android:name="android.intent.action.SEND" />
     20                 <category android:name="android.intent.category.DEFAULT" />
     21                 <data android:mimeType="image/*" />
     22             </intent-filter>
     23         </activity>
     24     </application>
     25 
     26 </manifest>
     27