AndroidManifest.xml 550 B

12345678910111213141516
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.guiying.module.news">
  3. <application android:theme="@style/AppTheme">
  4. <activity
  5. android:name=".main.NewsCenterActivity"
  6. android:theme="@style/AppTheme.NoActionBar"
  7. android:screenOrientation="portrait" />
  8. <activity
  9. android:name=".detail.NewsDetailActivity"
  10. android:screenOrientation="portrait"
  11. android:theme="@style/AppTheme.NoActionBar" />
  12. </application>
  13. </manifest>