AndroidManifest.xml 1017 B

12345678910111213141516171819202122232425262728
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.example.servicetest2"
  3. android:versionCode="1"
  4. android:versionName="1.0" >
  5. <uses-sdk
  6. android:minSdkVersion="14"
  7. android:targetSdkVersion="19" />
  8. <application
  9. android:allowBackup="true"
  10. android:icon="@drawable/ic_launcher"
  11. android:label="@string/app_name"
  12. android:theme="@style/AppTheme" >
  13. <activity android:name="com.service.demo.Main">
  14. <intent-filter >
  15. <action android:name="android.intent.action.MAIN"/>
  16. <category android:name="android.intent.category.LAUNCHER"/>
  17. </intent-filter>
  18. </activity>
  19. <service android:enabled="true" android:name="com.service.demo.Service1" android:process=":service1"></service>
  20. <service android:enabled="true" android:name="com.service.demo.Service2" android:process=":service2"></service>
  21. </application>
  22. </manifest>