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