Advertisement
Guest User

Untitled

a guest
Sep 12th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.51 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="com.example.kg2152.reminder" >
  4.  
  5.     <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>
  6.  
  7.     <application
  8.        android:allowBackup="true"
  9.        android:icon="@drawable/ic_launcher"
  10.        android:label="@string/app_name"
  11.        android:theme="@style/AppTheme" >
  12.         <service
  13.            android:name=".MyService"
  14.            android:process=":myservice"
  15.            android:label="@string/app_name">
  16.             <intent-filter>
  17.                 <action android:name="com.example.kg2152.reminder.MyService">
  18.                 </action>
  19.             </intent-filter>
  20.             </service>
  21.         <receiver
  22.            android:name=".MyReceiver"
  23.            android:label="@string/app_name">
  24.             <intent-filter>
  25.                 <action android:name="android.intent.action.BOOT_COMPLETED"/>
  26.             </intent-filter>
  27.             </receiver>
  28.         <activity
  29.            android:name=".MainActivity"
  30.            android:label="@string/app_name" >
  31.             <intent-filter>
  32.                 <action android:name="android.intent.action.MAIN" />
  33.  
  34.                 <category android:name="android.intent.category.LAUNCHER" />
  35.             </intent-filter>
  36.         </activity>
  37.         <activity
  38.            android:name=".Second"
  39.            android:label="@string/app_name">
  40.             </activity>
  41.     </application>
  42.  
  43. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement