You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.photoviewersample"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk android:targetSdkVersion="21" android:minSdkVersion="14"/>
|
|
|
|
<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> |