wxr
2023-04-11 cd70a2a8a2bdebf51259d8f39ed110a34b9be9e5
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
35
36
37
38
39
40
41
42
<?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="ezviz.ezopensdkcommon">
 
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission
        android:name="android.permission.READ_LOGS"
        tools:ignore="ProtectedPermissions" />
 
    <application>
        <activity
            android:name=".configwifi.ManualConnectDeviceHotspotActivity"
            android:screenOrientation="portrait"
            android:theme="@style/FullAppTheme" />
        <activity
            android:name=".configwifi.ManualInputDeviceHotspotInfoActivity"
            android:screenOrientation="portrait"
            android:theme="@style/FullAppTheme" />
        <activity
            android:name=".configwifi.AutoWifiPrepareStepOneActivity"
            android:screenOrientation="portrait"
            android:theme="@style/FullAppTheme" />
        <activity
            android:name=".configwifi.AutoWifiNetConfigActivity"
            android:screenOrientation="portrait"
            android:theme="@style/FullAppTheme" />
        <activity
            android:name=".configwifi.AutoWifiResetActivity"
            android:screenOrientation="portrait"
            android:theme="@style/FullAppTheme" />
        <activity
            android:name=".configwifi.ManualChooseConfigWifiWayActivity"
            android:screenOrientation="portrait"
            android:theme="@style/FullAppTheme" />
        <activity
            android:name=".configwifi.ConfigWifiExecutingActivity"
            android:screenOrientation="portrait"
            android:theme="@style/FullAppTheme" />
    </application>
 
</manifest>