summaryrefslogtreecommitdiffstats
path: root/photoviewer/sample/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'photoviewer/sample/AndroidManifest.xml')
-rw-r--r--photoviewer/sample/AndroidManifest.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/photoviewer/sample/AndroidManifest.xml b/photoviewer/sample/AndroidManifest.xml
new file mode 100644
index 0000000..8a75d6a
--- /dev/null
+++ b/photoviewer/sample/AndroidManifest.xml
@@ -0,0 +1,35 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.photoviewersample"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk
+ android:minSdkVersion="14"
+ android:targetSdkVersion="16" />
+
+ <application
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name=".MainActivity"
+ android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name="com.android.ex.photo.PhotoViewActivity"
+ android:label="@string/app_name"
+ android:theme="@style/PhotoViewTheme" >
+ </activity>
+ <provider
+ android:name=".SampleProvider"
+ android:exported="false"
+ android:authorities="com.example.photoviewersample.SampleProvider">
+ </provider>
+ </application>
+
+</manifest> \ No newline at end of file