1 <?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 --> 32 <application 33 android:icon="@drawable/icon" 34 android:label="@string/app_name"> 35 <!-- 36 Declares the activity's class name and visible label. The leading "." indicates 37 that the name should be preceded by the application's Android package name. 38 --> 39 <activity 40 android:name=".AlarmActivity" 41 android:label="@string/app_name"> 42 <intent-filter> 43 <action android:name="android.intent.action.MAIN" /> 44 <category android:name="android.intent.category.LAUNCHER" /> 45 </intent-filter> 46 </activity> 47 <service 48 android:name=".AlarmService" 49 android:label="@string/alarm_service" 50 android:process="com.example.android.newalarm"> 51 </service> 52 </application> 53 <uses-sdk android:targetSdkVersion="4" android:minSdkVersion="3"/> 54 </manifest> 55