30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- 声明摄像头硬件特性 -->
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="false" />
|
|
|
|
<!-- 声明摄像头权限 -->
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<application>
|
|
<!-- 声明 MainActivity -->
|
|
<!-- 作为库,exported 通常设为 false,除非明确需要外部应用启动 -->
|
|
<activity
|
|
android:name=".FaceActivity"
|
|
android:exported="true"
|
|
tools:ignore="MissingClass"> <!-- 如果IDE报类找不到,可以添加这个 -->
|
|
|
|
<!-- 重要:移除 MAIN/LAUNCHER intent-filter -->
|
|
<!-- 让使用库的应用来决定哪个是主Activity -->
|
|
|
|
<meta-data
|
|
android:name="android.app.lib_name"
|
|
android:value="face_sdk" />
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |