2026-05-07 10:30:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
2026-05-12 09:11:41 +00:00
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.telephony"
|
|
|
|
|
android:required="false" />
|
|
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" tools:ignore="QueryAllPackagesPermission" />
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="com.sunmi.perm.LED" />
|
|
|
|
|
<uses-permission android:name="com.sunmi.perm.MSR" />
|
|
|
|
|
<uses-permission android:name="com.sunmi.perm.ICC" />
|
|
|
|
|
<uses-permission android:name="com.sunmi.perm.PINPAD" />
|
|
|
|
|
<uses-permission android:name="com.sunmi.perm.SECURITY" />
|
|
|
|
|
<uses-permission android:name="com.sunmi.perm.CONTACTLESS_CARD" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
|
|
|
|
2026-05-07 10:30:10 +00:00
|
|
|
<application
|
2026-05-12 09:11:41 +00:00
|
|
|
android:name="com.mob.utsmyanmar.MyApplication"
|
2026-05-07 10:30:10 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/Theme.MOBPOS">
|
|
|
|
|
<activity
|
2026-05-12 09:11:41 +00:00
|
|
|
android:name="com.mob.utsmyanmar.MainActivity"
|
2026-05-07 10:30:10 +00:00
|
|
|
android:exported="true"
|
|
|
|
|
android:label="@string/app_name"
|
2026-05-12 17:48:05 +00:00
|
|
|
android:theme="@style/Theme.MOBPOS.Starting">
|
2026-05-07 10:30:10 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
</application>
|
|
|
|
|
|
2026-05-12 09:11:41 +00:00
|
|
|
</manifest>
|