| 123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.guiying.module.girls">
- <application
- android:name="debug.GirlsApplication"
- android:allowBackup="true"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/girls_name"
- android:supportsRtl="true"
- android:theme="@style/AppTheme">
- <activity
- android:name=".main.GirlsActivity"
- android:screenOrientation="portrait">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name=".girl.GirlActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AppTheme.NoActionBar" />
- </application>
- </manifest>
|