| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.ryg.chapter_5"
- android:versionCode="1"
- android:versionName="1.0" >
- <uses-sdk
- android:minSdkVersion="8"
- android:targetSdkVersion="19" />
- <application
- android:allowBackup="true"
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name"
- android:theme="@style/AppTheme" >
- <activity
- android:name=".TestActivity"
- android:configChanges="orientation|screenSize"
- android:label="@string/app_name"
- android:launchMode="standard" />
- <activity
- android:name=".DemoActivity_1"
- android:configChanges="screenLayout"
- android:exported="true"
- android:label="@string/title_scene_1"
- android:launchMode="standard" />
- <activity
- android:name=".DemoActivity_2"
- android:configChanges="screenLayout"
- android:exported="true"
- android:label="@string/title_scene_2"
- android:launchMode="standard" />
- <activity
- android:name=".MainActivity"
- android:label="@string/app_name"
- android:process=":remote" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <receiver android:name=".MyAppWidgetProvider" >
- <meta-data
- android:name="android.appwidget.provider"
- android:resource="@xml/appwidget_provider_info" >
- </meta-data>
- <intent-filter>
- <action android:name="com.ryg.chapter_5.action.CLICK" />
- <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
- </intent-filter>
- </receiver>
- </application>
- </manifest>
|