hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.rockchip.gpadc.demo"
    android:versionCode="1"
    android:versionName="1.0">
 
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-feature android:name="android.hardware.camera" />
 
 
    <application
        android:allowBackup="true"
        android:icon="@drawable/rockchip"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
        <!--<activity-->
        <!--android:name=".MainActivity"-->
        <!--android:screenOrientation="landscape">-->
        <!--</activity>-->
        <activity
            android:name="com.rockchip.gpadc.demo.MainActivity"
            android:screenOrientation="sensorLandscape"
            android:label="@string/title_activity_start"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
 
</manifest>