You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.3 KiB
XML
66 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
|
|
|
<application
|
|
android:name=".base.MyApplication"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/logo"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/logo"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.JinYuRFID"
|
|
android:usesCleartextTraffic="true"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".IPConfiguraActivity"
|
|
android:exported="false" />
|
|
|
|
<uses-library
|
|
android:name="com.seuic.uhf"
|
|
android:required="false" />
|
|
|
|
|
|
<activity
|
|
android:name=".AppLoginActivity"
|
|
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=".ReadActivity"
|
|
android:exported="true"/>
|
|
<activity
|
|
android:name=".Read2Activity"
|
|
android:exported="true"/>
|
|
|
|
<activity
|
|
android:name=".ReadBlueToothActivity"
|
|
android:exported="true" />
|
|
<activity
|
|
android:name=".WriteUserActivity"
|
|
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=".ConfigurationTableActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |