| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="com.itant.shibei">
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
- <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
- <application
- android:allowBackup="false"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:supportsRtl="true"
- android:theme="@style/AppTheme"
- tools:ignore="GoogleAppIndexingWarning"
- android:requestLegacyExternalStorage="true"
- android:networkSecurityConfig="@xml/network"
- android:name=".ui.BeiApplication"
- tools:replace="android:allowBackup">
- <activity
- android:name=".ui.TabActivity"
- android:label="@string/app_name"
- android:screenOrientation="portrait"
- android:theme="@style/SplashTheme">
- </activity>
- <activity
- android:name=".ui.mine.login.LoginActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle"/>
- <activity
- android:name=".ui.welcome.WelcomeActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="portrait"
- android:theme="@style/AppTheme.Welcome">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name=".ui.mine.register.RegisterActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle"
- android:windowSoftInputMode="stateVisible|adjustResize"/>
- <activity
- android:name=".ui.mine.register.fill.FillDataActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.mine.forget.ForgetActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.mine.MineActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.mine.coupon.AddPhotoActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.home.search.SearchActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.home.tool.json.JsonActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.home.tool.weather.WeatherActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.home.tool.yiji.YijiActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.home.goods.play.VideoPlayActivity"
- android:configChanges="orientation|screenSize|keyboardHidden"
- android:screenOrientation="landscape"
- android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" />
- <activity
- android:name=".ui.home.goods.detail.GoodsDetailActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- <activity
- android:name=".ui.home.goods.detail.MeizhiDetailActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AppTheme.MeizhiDetail" />
- <activity
- android:name=".ui.mine.fav.MyFavActivity"
- android:screenOrientation="portrait"
- android:theme="@style/TextInputStyle" />
- </application>
- </manifest>
|