1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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<!-- Declare the contents of this Android application.  The namespace
18     attribute brings in the Android platform namespace, and the package
19     supplies a unique name for the application.  When writing your
20     own application, the package name must be changed from "com.example.*"
21     to come from a domain that you own or have control over. -->
22<manifest xmlns:android="http://schemas.android.com/apk/res/android">
23
24    <application
25        android:icon="@drawable/app_sample_code"
26        android:label="@string/activity_sample_code"
27        android:supportsRtl="true"
28        android:theme="@style/Theme.Transition">
29
30        <activity
31            android:name=".SupportTransitionDemos"
32            android:exported="true">
33            <intent-filter>
34                <action android:name="android.intent.action.MAIN" />
35
36                <category android:name="android.intent.category.DEFAULT" />
37                <category android:name="android.intent.category.LAUNCHER" />
38            </intent-filter>
39        </activity>
40
41        <activity
42            android:name=".widget.SceneUsage"
43            android:exported="true"
44            android:label="@string/scene"
45            android:theme="@style/Theme.Transition">
46            <intent-filter>
47                <action android:name="android.intent.action.MAIN" />
48                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
49            </intent-filter>
50        </activity>
51
52        <activity
53            android:name=".widget.CustomUsage"
54            android:exported="true"
55            android:label="@string/custom"
56            android:theme="@style/Theme.Transition">
57            <intent-filter>
58                <action android:name="android.intent.action.MAIN" />
59                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
60            </intent-filter>
61        </activity>
62
63        <activity
64            android:name=".widget.BeginDelayedUsage"
65            android:exported="true"
66            android:label="@string/beginDelayed"
67            android:theme="@style/Theme.Transition">
68            <intent-filter>
69                <action android:name="android.intent.action.MAIN" />
70                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
71            </intent-filter>
72        </activity>
73
74        <activity
75            android:name=".widget.ArcMotionUsage"
76            android:exported="true"
77            android:label="@string/arcMotion"
78            android:theme="@style/Theme.Transition">
79            <intent-filter>
80                <action android:name="android.intent.action.MAIN" />
81                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
82            </intent-filter>
83        </activity>
84
85        <activity
86            android:name=".widget.ExplodeUsage"
87            android:exported="true"
88            android:label="@string/explode"
89            android:theme="@style/Theme.Transition">
90            <intent-filter>
91                <action android:name="android.intent.action.MAIN" />
92                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
93            </intent-filter>
94        </activity>
95
96        <activity
97            android:name=".widget.ChangeClipBoundsUsage"
98            android:exported="true"
99            android:label="@string/clipBounds"
100            android:theme="@style/Theme.Transition">
101            <intent-filter>
102                <action android:name="android.intent.action.MAIN" />
103                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
104            </intent-filter>
105        </activity>
106
107        <activity
108            android:name=".widget.ChangeTransformUsage"
109            android:exported="true"
110            android:label="@string/changeTransform"
111            android:theme="@style/Theme.Transition">
112            <intent-filter>
113                <action android:name="android.intent.action.MAIN" />
114                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
115            </intent-filter>
116        </activity>
117
118        <activity
119            android:name=".widget.ChangeImageTransformUsage"
120            android:exported="true"
121            android:label="@string/changeImageTransform"
122            android:theme="@style/Theme.Transition">
123            <intent-filter>
124                <action android:name="android.intent.action.MAIN" />
125                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
126            </intent-filter>
127        </activity>
128
129        <activity
130            android:name=".widget.ReparentImageUsage"
131            android:exported="true"
132            android:label="@string/reparentImage"
133            android:theme="@style/Theme.Transition">
134            <intent-filter>
135                <action android:name="android.intent.action.MAIN" />
136                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
137            </intent-filter>
138        </activity>
139
140        <activity
141            android:name=".widget.FragmentTransitionUsage"
142            android:exported="true"
143            android:label="@string/fragmentTransition"
144            android:theme="@style/Theme.Transition">
145            <intent-filter>
146                <action android:name="android.intent.action.MAIN" />
147                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
148            </intent-filter>
149        </activity>
150
151        <activity
152            android:name=".widget.SidePropagationUsage"
153            android:exported="true"
154            android:label="@string/side_propagation"
155            android:theme="@style/Theme.Transition">
156            <intent-filter>
157                <action android:name="android.intent.action.MAIN" />
158                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
159            </intent-filter>
160        </activity>
161
162        <activity
163            android:name=".widget.RecyclerViewUsage"
164            android:exported="true"
165            android:label="@string/recycler_view"
166            android:theme="@style/Theme.Transition">
167            <intent-filter>
168                <action android:name="android.intent.action.MAIN" />
169                <category android:name="com.example.androidx.transition.SAMPLE_CODE" />
170            </intent-filter>
171        </activity>
172    </application>
173</manifest>
174