| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.ryg.chapter_1"
- android:versionCode="1"
- android:versionName="1.0" >
- <uses-sdk
- android:minSdkVersion="8"
- android:targetSdkVersion="19" />
- <!-- <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> -->
- <application
- android:allowBackup="true"
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name"
- android:theme="@style/AppTheme" >
- <activity
- android:name="com.ryg.chapter_1.MainActivity"
- android:configChanges="orientation|screenSize"
- android:label="@string/app_name"
- android:launchMode="standard" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name="com.ryg.chapter_1.SecondActivity"
- android:configChanges="screenLayout"
- android:label="@string/app_name"
- android:launchMode="standard"
- android:taskAffinity="com.ryg.task1" />
- <activity
- android:name="com.ryg.chapter_1.ThirdActivity"
- android:configChanges="screenLayout"
- android:label="@string/app_name"
- android:launchMode="singleTask"
- android:taskAffinity="com.ryg.task1" >
- <intent-filter>
- <action android:name="com.ryg.charpter_1.c" />
- <action android:name="com.ryg.charpter_1.d" />
- <category android:name="com.ryg.category.c" />
- <category android:name="com.ryg.category.d" />
- <category android:name="android.intent.category.DEFAULT" />
- <data android:mimeType="text/plain" />
- </intent-filter>
- </activity>
- </application>
- </manifest>
|