增加写入拨号,读取数据,优化无障碍
This commit is contained in:
@@ -1,15 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.ttstd.elderlyassistant">
|
||||
|
||||
<!--NFC权限-->
|
||||
<uses-permission android:name="android.permission.NFC" />
|
||||
<!--声明只有带NFC的手机才可以下载-->
|
||||
<!-- NFC权限 -->
|
||||
<uses-permission android:name="android.permission.NFC" /> <!-- 声明只有带NFC的手机才可以下载 -->
|
||||
<uses-feature
|
||||
android:name="android.hardware.nfc"
|
||||
android:required="true" />
|
||||
|
||||
|
||||
<application
|
||||
android:name=".base.BaseApplication"
|
||||
android:allowBackup="true"
|
||||
@@ -28,7 +25,11 @@
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".activity.setting.SettingsActivity" />
|
||||
<activity
|
||||
android:name=".activity.write.WriteMessageActivity"
|
||||
android:exported="true"
|
||||
android:launchMode="singleTop" />
|
||||
<activity
|
||||
android:name=".activity.nfc.NfcActivity"
|
||||
android:exported="true"
|
||||
@@ -46,10 +47,11 @@
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<data android:mimeType="vnd.android.cursor.item/ndef_msg" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
|
||||
<service
|
||||
|
||||
Reference in New Issue
Block a user