• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?><!--
2  Copyright (C) 2013 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17    package="com.example.android.testingfun"
18    android:versionCode="1"
19    android:versionName="1.0">
20
21    <uses-sdk
22        android:minSdkVersion="8"
23        android:targetSdkVersion="17" />
24    <application
25        android:label="@string/app_name"
26        android:icon="@drawable/ic_launcher"
27        android:theme="@style/AppTheme"
28        android:allowBackup="false">
29
30        <activity
31            android:name=".lesson2.MyFirstTestActivity"
32            android:label="@string/my_first_test">
33            <intent-filter>
34                <action android:name="android.intent.action.MAIN" />
35                <category android:name="android.intent.category.LAUNCHER" />
36            </intent-filter>
37        </activity>
38        <activity
39            android:name=".lesson3.ClickFunActivity"
40            android:label="@string/click_fun">
41            <intent-filter>
42                <action android:name="android.intent.action.MAIN" />
43                <category android:name="android.intent.category.LAUNCHER" />
44            </intent-filter>
45        </activity>
46        <activity
47            android:name=".lesson4.LaunchActivity"
48            android:label="@string/launch_next">
49            <intent-filter>
50                <action android:name="android.intent.action.MAIN" />
51                <category android:name="android.intent.category.LAUNCHER" />
52            </intent-filter>
53        </activity>
54        <activity
55            android:name=".lesson4.NextActivity"
56            android:label="@string/next_activity" />
57        <activity
58            android:name=".lesson5.SenderActivity"
59            android:label="@string/sender_activity">
60            <intent-filter>
61                <action android:name="android.intent.action.MAIN" />
62                <category android:name="android.intent.category.LAUNCHER" />
63            </intent-filter>
64        </activity>
65        <activity
66            android:name=".lesson5.ReceiverActivity"
67            android:label="@string/receiver_activity" />
68    </application>
69</manifest>
70