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 7 android:minSdkVersion="14" 8 android:targetSdkVersion="16" /> 9 10 <application 11 android:icon="@drawable/ic_launcher" 12 android:label="@string/app_name" 13 android:theme="@style/AppTheme" > 14 <activity 15 android:name=".MainActivity" 16 android:label="@string/app_name" > 17 <intent-filter> 18 <action android:name="android.intent.action.MAIN" /> 19 20 <category android:name="android.intent.category.LAUNCHER" /> 21 </intent-filter> 22 </activity> 23 <activity 24 android:name="com.android.ex.photo.PhotoViewActivity" 25 android:label="@string/app_name" 26 android:theme="@style/PhotoViewTheme" > 27 </activity> 28 <provider 29 android:name=".SampleProvider" 30 android:exported="false" 31 android:authorities="com.example.photoviewersample.SampleProvider"> 32 </provider> 33 </application> 34 35 </manifest>