blob: 2242567718909107068dc689b113e5c876f821da [file] [log] [blame]
Joe Malin6878d8c2010-06-05 14:03:42 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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<!--
18 Declares the contents of this Android application. The xmlns:android
19 attribute brings in the Android platform namespace, and the
20 "package" attribute provides a unique name for the application.
21 If you use this file as a template in your own application, you must change
22 the package name from "com.example.android" to one that you own or have
23 control over.
24 -->
25<manifest xmlns:android="http://schemas.android.com/apk/res/android"
26 package="com.example.android.newalarm"
27 android:versionCode="2"
28 android:versionName="2.0">
29 <!--
30 Declares the application, its icon, and its visible label
31 -->
Chris Wrenb6ba3c52015-06-11 10:56:59 -040032 <uses-sdk android:minSdkVersion="11" />
Joe Malin6878d8c2010-06-05 14:03:42 -070033 <application
34 android:icon="@drawable/icon"
35 android:label="@string/app_name">
36 <!--
37 Declares the activity's class name and visible label. The leading "." indicates
38 that the name should be preceded by the application's Android package name.
39 -->
40 <activity
41 android:name=".AlarmActivity"
42 android:label="@string/app_name">
43 <intent-filter>
44 <action android:name="android.intent.action.MAIN" />
45 <category android:name="android.intent.category.LAUNCHER" />
46 </intent-filter>
47 </activity>
48 <service
49 android:name=".AlarmService"
50 android:label="@string/alarm_service"
51 android:process="com.example.android.newalarm">
52 </service>
53 </application>
54 <uses-sdk android:targetSdkVersion="4" android:minSdkVersion="3"/>
55</manifest>