AndroidManifest.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.jacky.permanent"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk
  7. android:minSdkVersion="8"
  8. android:targetSdkVersion="17" />
  9. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>
  10. <application
  11. android:allowBackup="true"
  12. android:icon="@drawable/ic_launcher"
  13. android:label="@string/app_name"
  14. android:theme="@style/AppTheme" >
  15. <activity
  16. android:name="com.jacky.permanent.MainActivity"
  17. android:label="@string/app_name" >
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. </activity>
  23. <service
  24. android:name="com.jacky.permanent.MyService"
  25. android:enabled="true"
  26. android:process=":remote" >
  27. </service>
  28. <receiver android:name="com.jacky.permanent.BootBroadcastReceiver">
  29. <intent-filter>
  30. <action android:name="android.intent.action.BOOT_COMPLETED" />
  31. <category android:name="android.intent.category.HOME" />
  32. </intent-filter>
  33. </receiver>
  34. </application>
  35. </manifest>