blob: 5c2227787999bc8738ea4668216457b7e6fb61fd [file] [log] [blame]
Filip Gruszczynskie5275fa2015-05-07 17:39:28 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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 package="com.example.android.support.percent">
24
Aurimas Liutikasf7513062017-01-05 13:02:27 -080025 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
Filip Gruszczynskie5275fa2015-05-07 17:39:28 -070026
27 <application android:label="@string/activity_sample_code"
28 android:supportsRtl="true"
29 android:icon="@drawable/app_sample_code">
30
31 <activity android:name="SupportPercentDemos">
32 <intent-filter>
33 <action android:name="android.intent.action.MAIN" />
34 <category android:name="android.intent.category.DEFAULT" />
35 <category android:name="android.intent.category.LAUNCHER" />
36 </intent-filter>
37 </activity>
38
Kirill Grouchnikov19c76392016-03-04 15:09:33 -050039 <activity android:name=".SimplePercentFrameLayoutActivity"
40 android:label="@string/simple_percent_frame_demo">
41 <intent-filter>
42 <action android:name="android.intent.action.MAIN"/>
43 <category android:name="com.example.android.supportpercent.SAMPLE_CODE"/>
44 </intent-filter>
45 </activity>
46
47 <activity android:name=".IncludePercentFrameLayoutActivity"
48 android:label="@string/include_percent_frame_demo">
49 <intent-filter>
50 <action android:name="android.intent.action.MAIN"/>
51 <category android:name="com.example.android.supportpercent.SAMPLE_CODE"/>
52 </intent-filter>
53 </activity>
54
Kirill Grouchnikov96f9f9e2016-04-04 13:41:52 -040055 <activity android:name=".PercentFrameLayoutActivityHPaddings"
56 android:label="@string/percent_frame_hpaddings_demo">
57 <intent-filter>
58 <action android:name="android.intent.action.MAIN"/>
59 <category android:name="com.example.android.supportpercent.SAMPLE_CODE"/>
60 </intent-filter>
61 </activity>
62
63 <activity android:name=".PercentFrameLayoutActivityVPaddings"
64 android:label="@string/percent_frame_vpaddings_demo">
65 <intent-filter>
66 <action android:name="android.intent.action.MAIN"/>
67 <category android:name="com.example.android.supportpercent.SAMPLE_CODE"/>
68 </intent-filter>
69 </activity>
70
Kirill Grouchnikov19c76392016-03-04 15:09:33 -050071 <activity android:name=".SimplePercentRelativeLayoutActivity"
72 android:label="@string/simple_percent_relative_demo">
73 <intent-filter>
74 <action android:name="android.intent.action.MAIN"/>
75 <category android:name="com.example.android.supportpercent.SAMPLE_CODE"/>
76 </intent-filter>
77 </activity>
78
Kirill Grouchnikov96f9f9e2016-04-04 13:41:52 -040079 <activity android:name=".PercentRelativeLayoutActivityHPaddings"
80 android:label="@string/percent_relative_hpaddings_demo">
81 <intent-filter>
82 <action android:name="android.intent.action.MAIN"/>
83 <category android:name="com.example.android.supportpercent.SAMPLE_CODE"/>
84 </intent-filter>
85 </activity>
86
87 <activity android:name=".PercentRelativeLayoutActivityVPaddings"
88 android:label="@string/percent_relative_vpaddings_demo">
89 <intent-filter>
90 <action android:name="android.intent.action.MAIN"/>
91 <category android:name="com.example.android.supportpercent.SAMPLE_CODE"/>
92 </intent-filter>
93 </activity>
94
Filip Gruszczynskie5275fa2015-05-07 17:39:28 -070095 </application>
96</manifest>