AndroidManifest.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.ryg.chapter_11"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk
  7. android:minSdkVersion="8"
  8. android:targetSdkVersion="19" />
  9. <uses-permission android:name="com.ryg.PROVIDER" />
  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=".TestActivity"
  17. android:configChanges="orientation|screenSize"
  18. android:label="@string/app_name"
  19. android:launchMode="standard" />
  20. <activity
  21. android:name=".DemoActivity_1"
  22. android:configChanges="screenLayout"
  23. android:label="@string/title_scene_1"
  24. android:launchMode="standard" />
  25. <activity
  26. android:name=".DemoActivity_2"
  27. android:configChanges="screenLayout"
  28. android:label="@string/app_name"
  29. android:launchMode="standard" />
  30. <activity
  31. android:name=".MainActivity"
  32. android:label="@string/app_name" >
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN" />
  35. <category android:name="android.intent.category.LAUNCHER" />
  36. </intent-filter>
  37. </activity>
  38. <receiver android:name=".MyReceiver" >
  39. <intent-filter>
  40. <action android:name="com.ryg.receiver.LAUNCH" />
  41. </intent-filter>
  42. </receiver>
  43. <service android:name=".LocalIntentService" />
  44. </application>
  45. </manifest>