33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
||
<application
|
||
android:allowBackup="true"
|
||
android:icon="@mipmap/ic_launcher"
|
||
android:label="@string/app_name"
|
||
android:roundIcon="@mipmap/ic_launcher_round"
|
||
android:supportsRtl="true"
|
||
android:theme="@style/Theme.Sample" >
|
||
<activity
|
||
android:name=".MainActivity"
|
||
android:exported="true">
|
||
<intent-filter>
|
||
<action android:name="android.intent.action.MAIN" />
|
||
<category android:name="android.intent.category.LAUNCHER" />
|
||
</intent-filter>
|
||
|
||
<meta-data
|
||
android:name="android.app.lib_name"
|
||
android:value="face_sdk" />
|
||
</activity>
|
||
|
||
<activity
|
||
android:name=".MakeupActivity"
|
||
android:exported="false"
|
||
android:screenOrientation="portrait"
|
||
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|keyboard|navigation|smallestScreenSize" />
|
||
<!-- MakeupActivity 继承 FaceActivity,face_sdk 渲染目前只支持竖屏。
|
||
configChanges 与 FaceActivity 保持一致,避免软键盘/导航栏触发重建。 -->
|
||
</application>
|
||
|
||
</manifest> |