Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.      package="com.helloworldreceiver.it"
  4.      android:versionCode="1"
  5.      android:versionName="1.0">
  6.     <uses-sdk android:minSdkVersion="3" />
  7.  
  8.     <application android:icon="@drawable/icon" android:label="@string/app_name">
  9.         <activity android:name=".Main"
  10.                  android:label="@string/app_name">
  11.             <intent-filter>
  12.                 <action android:name="android.intent.action.MAIN" />
  13.                 <category android:name="android.intent.category.LAUNCHER" />
  14.             </intent-filter>
  15.         </activity>
  16.        
  17.         <receiver android:name="BootReceiver">
  18.             <intent-filter>
  19.                 <action android:name="android.intent.action.BOOT_COMPLETED" />
  20.                 <category android:name="android.intent.category.HOME" />
  21.             </intent-filter>
  22.         </receiver>
  23.        
  24.         <service android:name="Receiver">
  25.             <intent-filter>
  26.                 <action android:name="com.sdincrease.it.Receiver" />
  27.             </intent-filter>
  28.         </service>
  29.        
  30.     </application>
  31. </manifest>