Roman Nurik | 01be9fd | 2012-10-15 13:09:16 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | Copyright 2012 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.example.android.animationsdemo" |
| 19 | android:versionCode="1" |
| 20 | android:versionName="1.0"> |
| 21 | |
| 22 | <!-- |
| 23 | This example's minimum API level is 14 due to the following recent |
| 24 | key platform features: |
| 25 | |
| 26 | API 11: property animations (android.animations package) |
| 27 | API 12: ViewPropertyAnimator |
| 28 | API 14: View properties (android.util.Property) such as View.X and View.Y. |
| 29 | --> |
| 30 | <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" /> |
| 31 | |
| 32 | <application android:allowBackup="true" |
| 33 | android:label="@string/app_name" |
| 34 | android:icon="@drawable/ic_launcher" |
| 35 | android:theme="@android:style/Theme.Holo.Light.DarkActionBar"> |
| 36 | |
| 37 | <activity android:name=".MainActivity" |
| 38 | android:label="@string/app_name"> |
| 39 | <intent-filter> |
| 40 | <action android:name="android.intent.action.MAIN" /> |
| 41 | <category android:name="android.intent.category.LAUNCHER" /> |
| 42 | </intent-filter> |
| 43 | </activity> |
| 44 | |
| 45 | <activity android:name=".CrossfadeActivity" |
| 46 | android:label="@string/title_crossfade" |
| 47 | android:uiOptions="splitActionBarWhenNarrow" |
| 48 | android:parentActivityName=".MainActivity"> |
| 49 | <meta-data android:name="android.support.PARENT_ACTIVITY" |
| 50 | android:value=".MainActivity" /> |
| 51 | </activity> |
| 52 | |
| 53 | <activity android:name=".CardFlipActivity" |
| 54 | android:label="@string/title_card_flip" |
| 55 | android:parentActivityName=".MainActivity" |
| 56 | android:theme="@style/DarkTheme"> |
| 57 | <meta-data android:name="android.support.PARENT_ACTIVITY" |
| 58 | android:value=".MainActivity" /> |
| 59 | </activity> |
| 60 | |
| 61 | <activity android:name=".ScreenSlideActivity" |
| 62 | android:label="@string/title_screen_slide" |
| 63 | android:parentActivityName=".MainActivity" |
| 64 | android:uiOptions="splitActionBarWhenNarrow"> |
| 65 | <meta-data android:name="android.support.PARENT_ACTIVITY" |
| 66 | android:value=".MainActivity" /> |
| 67 | </activity> |
| 68 | |
| 69 | <activity android:name=".ZoomActivity" |
| 70 | android:label="@string/title_zoom" |
| 71 | android:parentActivityName=".MainActivity"> |
| 72 | <meta-data android:name="android.support.PARENT_ACTIVITY" |
| 73 | android:value=".MainActivity" /> |
| 74 | </activity> |
| 75 | |
| 76 | <activity android:name=".LayoutChangesActivity" |
| 77 | android:label="@string/title_layout_changes" |
| 78 | android:parentActivityName=".MainActivity">> |
| 79 | <meta-data android:name="android.support.PARENT_ACTIVITY" |
| 80 | android:value=".MainActivity" /> |
| 81 | </activity> |
| 82 | |
| 83 | </application> |
| 84 | |
| 85 | </manifest> |