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.
80 lines
2.8 KiB
XML
80 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<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.Haiweimom"
|
|
android:usesCleartextTraffic="true"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".wms.raw.CheckWorkActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.raw.StoreCheckActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ipc.FeedingMaterialsActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ClassItemActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ConfigActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.raw.RawOutActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".qm.CheckActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.product.ProductOutActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.product.ProductInActivity"
|
|
android:exported="false" />
|
|
|
|
<receiver
|
|
android:name=".broadcast.MyScannerReceiver"
|
|
android:enabled="true"
|
|
android:exported="true" />
|
|
|
|
<activity
|
|
android:name=".wms.product.BindVehicleActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.raw.RawReturnActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.raw.RawInActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.semi.SemiInActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".wms.semi.SemiOutActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".HomePageActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |