54 lines
1.7 KiB
XML
54 lines
1.7 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cc.winboll.studio.autonfc">
|
|
|
|
<uses-permission android:name="android.permission.NFC"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.nfc"
|
|
android:required="true"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/MyAppTheme"
|
|
android:resizeableActivity="true"
|
|
android:name=".App">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".nfc.NFCInterfaceActivity"
|
|
android:launchMode="singleTop">
|
|
<intent-filter>
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
<data android:mimeType="*/*"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<!-- NFC 绑定服务 -->
|
|
<service
|
|
android:name=".nfc.AutoNFCService"
|
|
android:exported="false"/>
|
|
|
|
<meta-data
|
|
android:name="android.max_aspect"
|
|
android:value="4.0"/>
|
|
|
|
</application>
|
|
</manifest>
|
|
|