| | |
| | | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| | | package="com.bsk.zhangbo.demoforbsk"> |
| | | |
| | | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| | | <uses-feature android:glEsVersion="0x00020000" /> |
| | | |
| | | <!-- INTERNET is needed to use a URI-based media player, depending on the URI --> |
| | | <uses-permission android:name="android.permission.INTERNET"></uses-permission> |
| | | <uses-permission android:name="android.permission.CAMERA"></uses-permission> |
| | | |
| | | <application |
| | | android:name=".base.BaseApplication" |
| | | android:name="cn.com.basic.face.base.BaseApplication" |
| | | android:allowBackup="true" |
| | | android:icon="@mipmap/ic_launcher" |
| | | android:label="@string/app_name" |
| | | android:supportsRtl="true" |
| | | android:theme="@style/AppTheme"> |
| | | <activity android:name=".ui.activity.MainActivity" |
| | | android:screenOrientation="landscape"> |
| | | <activity |
| | | android:name="cn.com.basic.face.base.MainActivity" |
| | | android:screenOrientation="landscape" |
| | | android:windowSoftInputMode="adjustPan"> |
| | | <intent-filter> |
| | | <action android:name="android.intent.action.MAIN" /> |
| | | |
| | | <category android:name="android.intent.category.LAUNCHER" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <activity android:name="cn.com.basic.face.base.PictureTaker" |
| | | android:label="@string/app_name" |
| | | android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
| | | android:screenOrientation="landscape"></activity> |
| | | </application> |
| | | |
| | | </manifest> |