AndroidManifest.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.itant.shibei">
  5. <uses-permission android:name="android.permission.INTERNET" />
  6. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  7. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
  8. <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
  9. <application
  10. android:allowBackup="false"
  11. android:icon="@mipmap/ic_launcher"
  12. android:label="@string/app_name"
  13. android:supportsRtl="true"
  14. android:theme="@style/AppTheme"
  15. tools:ignore="GoogleAppIndexingWarning"
  16. android:requestLegacyExternalStorage="true"
  17. android:networkSecurityConfig="@xml/network"
  18. android:name=".ui.BeiApplication"
  19. tools:replace="android:allowBackup">
  20. <activity
  21. android:name=".ui.TabActivity"
  22. android:label="@string/app_name"
  23. android:screenOrientation="portrait"
  24. android:theme="@style/SplashTheme">
  25. </activity>
  26. <activity
  27. android:name=".ui.mine.login.LoginActivity"
  28. android:screenOrientation="portrait"
  29. android:theme="@style/TextInputStyle"/>
  30. <activity
  31. android:name=".ui.welcome.WelcomeActivity"
  32. android:configChanges="keyboardHidden|orientation|screenSize"
  33. android:screenOrientation="portrait"
  34. android:theme="@style/AppTheme.Welcome">
  35. <intent-filter>
  36. <action android:name="android.intent.action.MAIN" />
  37. <category android:name="android.intent.category.LAUNCHER" />
  38. </intent-filter>
  39. </activity>
  40. <activity
  41. android:name=".ui.mine.register.RegisterActivity"
  42. android:screenOrientation="portrait"
  43. android:theme="@style/TextInputStyle"
  44. android:windowSoftInputMode="stateVisible|adjustResize"/>
  45. <activity
  46. android:name=".ui.mine.register.fill.FillDataActivity"
  47. android:screenOrientation="portrait"
  48. android:theme="@style/TextInputStyle" />
  49. <activity
  50. android:name=".ui.mine.forget.ForgetActivity"
  51. android:screenOrientation="portrait"
  52. android:theme="@style/TextInputStyle" />
  53. <activity
  54. android:name=".ui.mine.MineActivity"
  55. android:screenOrientation="portrait"
  56. android:theme="@style/TextInputStyle" />
  57. <activity
  58. android:name=".ui.mine.coupon.AddPhotoActivity"
  59. android:screenOrientation="portrait"
  60. android:theme="@style/TextInputStyle" />
  61. <activity
  62. android:name=".ui.home.search.SearchActivity"
  63. android:screenOrientation="portrait"
  64. android:theme="@style/TextInputStyle" />
  65. <activity
  66. android:name=".ui.home.tool.json.JsonActivity"
  67. android:screenOrientation="portrait"
  68. android:theme="@style/TextInputStyle" />
  69. <activity
  70. android:name=".ui.home.tool.weather.WeatherActivity"
  71. android:screenOrientation="portrait"
  72. android:theme="@style/TextInputStyle" />
  73. <activity
  74. android:name=".ui.home.tool.yiji.YijiActivity"
  75. android:screenOrientation="portrait"
  76. android:theme="@style/TextInputStyle" />
  77. <activity
  78. android:name=".ui.home.goods.play.VideoPlayActivity"
  79. android:configChanges="orientation|screenSize|keyboardHidden"
  80. android:screenOrientation="landscape"
  81. android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" />
  82. <activity
  83. android:name=".ui.home.goods.detail.GoodsDetailActivity"
  84. android:screenOrientation="portrait"
  85. android:theme="@style/TextInputStyle" />
  86. <activity
  87. android:name=".ui.home.goods.detail.MeizhiDetailActivity"
  88. android:screenOrientation="portrait"
  89. android:theme="@style/AppTheme.MeizhiDetail" />
  90. <activity
  91. android:name=".ui.mine.fav.MyFavActivity"
  92. android:screenOrientation="portrait"
  93. android:theme="@style/TextInputStyle" />
  94. </application>
  95. </manifest>