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