左晓为主开发手持机充值管理机
zuoxiao
2025-04-11 040f1aba13b179ff318366680a6346af7fd97795
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.kernal.passportreader.sdk" >
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.CAMERA" />
    <application>
 
 
        <activity android:name="com.kernal.passportreader.sdk.CardsCameraActivity"
            android:screenOrientation="landscape"
            android:resizeableActivity="false"
            android:exported="false"
            >
 
            <!--android:configChanges="orientation|keyboardHidden|screenSize"-->
            <!-- android:configChanges="orientation|keyboardHidden|screenSize"-->
            <!-- android:screenOrientation="portrait"-->
 
        </activity>
 
        <service
            android:name="kernal.idcard.android.AuthService"
            android:enabled="true"
            android:exported="false">
            <!--<intent-filter>-->
                <!--<action android:name="kernal.idcard.authService" />-->
            <!--</intent-filter>-->
        </service>
 
        <service
            android:name="kernal.idcard.android.RecogService"
            android:enabled="true"
            android:exported="false">
            <!--<intent-filter>-->
                <!--<action android:name="kernal.idcard.recogService" />-->
            <!--</intent-filter>-->
        </service>
        <service
            android:name="kernal.idcard.android.TimeService"
            android:enabled="true"
            android:exported="false">
            <!--<intent-filter>-->
                <!--<action android:name="kernal.idcard.TimeService" />-->
            <!--</intent-filter>-->
        </service>
        <receiver android:name="kernal.idcard.android.DataChangeReceiver" >
        </receiver>
        <provider
            android:authorities="${applicationId}.fileprovider"
            android:name="androidx.core.content.FileProvider"
            android:grantUriPermissions="true"
            android:exported="false">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/filepaths"/>
        </provider>
    </application>
</manifest>