1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2    package="com.example.photoviewersample"
3    android:versionCode="1"
4    android:versionName="1.0" >
5
6    <uses-sdk android:targetSdkVersion="21" android:minSdkVersion="14"/>
7
8    <application
9        android:icon="@drawable/ic_launcher"
10        android:label="@string/app_name"
11        android:theme="@style/AppTheme" >
12        <activity
13            android:name=".MainActivity"
14            android:label="@string/app_name" >
15            <intent-filter>
16                <action android:name="android.intent.action.MAIN" />
17
18                <category android:name="android.intent.category.LAUNCHER" />
19            </intent-filter>
20        </activity>
21        <activity
22            android:name="com.android.ex.photo.PhotoViewActivity"
23            android:label="@string/app_name"
24            android:theme="@style/PhotoViewTheme" >
25        </activity>
26        <provider
27            android:name=".SampleProvider"
28            android:exported="false"
29            android:authorities="com.example.photoviewersample.SampleProvider">
30        </provider>
31    </application>
32
33</manifest>