Pārlūkot izejas kodu

[提交内容]:nfc配置

wangyj18 9 gadi atpakaļ
vecāks
revīzija
c89111fe17

+ 22 - 0
display-client/AndroidManifest.xml

@ -40,6 +40,10 @@
40 40
    
41 41
    <uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
42 42
    <uses-permission android:name="android.permission.WAKE_LOCK" />
43
    
44
    <!-- NFC -->
45
    <uses-permission android:name="android.permission.NFC" />
46
    <uses-feature android:name="android.hardware.nfc" android:required="true" />
43 47

44 48
    <application
45 49
        android:allowBackup="true"
@ -62,6 +66,24 @@
62 66
            </intent-filter>
63 67
        </activity>
64 68
        
69
        <activity
70
            android:name="com.wade.mobile.common.nfc.activity.NfcActivity">
71
            
72
            <intent-filter>
73
                <action android:name="android.nfc.action.TECH_DISCOVERED" />
74
            </intent-filter>
75

76
            <meta-data
77
                android:name="android.nfc.action.TECH_DISCOVERED"
78
                android:resource="@xml/nfc_tech_filter" />
79

80
            <intent-filter>
81
                <action android:name="android.nfc.action.TAG_DISCOVERED" />
82

83
                <category android:name="android.intent.category.DEFAULT" />
84
            </intent-filter>
85
        </activity>
86
        
65 87
        <!-- 注册推送服务 -->
66 88
        <service android:name="com.ai.mobile.im.PushService" android:process=":WmPush" />
67 89
        

+ 30 - 0
display-client/res/xml/nfc_tech_filter.xml

@ -0,0 +1,30 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" >
3
    <tech-list>
4
        <tech>android.nfc.tech.MifareClassic</tech>
5
    </tech-list>
6
    <tech-list>
7
        <tech>android.nfc.tech.MifareUltralight</tech>
8
    </tech-list>
9
    <tech-list>
10
        <tech>android.nfc.tech.NfcA</tech>
11
    </tech-list>
12
    <tech-list>
13
        <tech>android.nfc.tech.NfcF</tech>
14
    </tech-list>
15
    <tech-list>
16
        <tech>android.nfc.tech.Ndef</tech>
17
    </tech-list>
18
    <tech-list>
19
        <tech>android.nfc.tech.NfcV</tech>
20
    </tech-list>
21
    <tech-list>
22
        <tech>android.nfc.tech.NfcB</tech>
23
    </tech-list>
24
    <tech-list>
25
        <tech>android.nfc.tech.NdefFormatable</tech>
26
    </tech-list>
27
    <tech-list>
28
        <tech>android.nfc.tech.IsoDep</tech>
29
    </tech-list>
30
</resources>