| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| | | package="com.dayu.henanlibrary"> |
| | | xmlns:tools="http://schemas.android.com/tools"> |
| | | |
| | | <uses-permission android:name="android.permission.NFC" /> |
| | | <!--用于访问网络,网络定位需要上网--> |
| | |
| | | android:supportsRtl="true" |
| | | android:theme="@style/AppTheme"> |
| | | |
| | | <!-- <activity--> |
| | | <!-- android:name="com.dayu.recharge.activity.LoginActivity"--> |
| | | <!-- android:exported="true">--> |
| | | <!-- <intent-filter>--> |
| | | <!-- <action android:name="android.intent.action.MAIN" />--> |
| | | <!-- <category android:name="android.intent.category.LAUNCHER" />--> |
| | | <!-- </intent-filter>--> |
| | | <!-- </activity>--> |
| | | <activity android:name="com.dayu.general.activity.NewCardActivity" /> |
| | | <activity android:name="com.dayu.general.activity.ManageListActivity" /> |
| | | <activity android:name="com.dayu.general.activity.SearchUserListActivity" /> |
| | | <activity |
| | | android:name="com.dayu.general.activity.NfcWreatActivity" |
| | | android:exported="false" |
| | | android:launchMode="singleTop"> |
| | | <intent-filter> |
| | | <action android:name="android.nfc.action.ACTION_NDEF_DISCOVERED" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <data android:mimeType="text/plain" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <activity |
| | | android:name=".activity.MainActivity" |
| | | android:launchMode="singleTop" |
| | | android:windowSoftInputMode="adjustPan"> |
| | | <intent-filter> |
| | | <action android:name="android.nfc.action.ACTION_NDEF_DISCOVERED" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <data android:mimeType="text/plain" /> |
| | | </intent-filter> |
| | | </activity> |
| | | |
| | | <activity |
| | | android:name=".activity.ManagerReadActivity" |
| | | android:exported="false" |
| | | android:launchMode="singleTop"> |
| | | <intent-filter> |
| | | <action android:name="android.nfc.action.ACTION_NDEF_DISCOVERED" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <data android:mimeType="text/plain" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <activity android:name=".activity.SearchCardListActivity" /> |
| | | <activity |
| | | android:name=".activity.NewCard2Activity" |
| | | android:exported="false" |
| | | android:launchMode="singleTop"> |
| | | <intent-filter> |
| | | <action android:name="android.nfc.action.ACTION_NDEF_DISCOVERED" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <data android:mimeType="text/plain" /> |
| | | </intent-filter> |
| | | </activity> |
| | | |
| | | <!-- 新增补卡Activity --> |
| | | <activity android:name=".activity.CardReplaceActivity" /> |
| | | |
| | | |
| | | <meta-data |