Files
MoGoEagleEye/core/mogo-core-utils/src/main/AndroidManifest.xml
donghongyu d590eef2ac [Change]
增加获取数字版权管理设备ID方法,解决因为系统升级等原因造成获取的SN被改变的问题

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
(cherry picked from commit 31a0fdd86d)
2022-03-02 11:34:14 +08:00

39 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.eagle.core.utilcode.util">
<uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
<application>
<activity
android:name="com.mogo.eagle.core.utilcode.util.UtilsTransActivity4MainProcess"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/ActivityTranslucent"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name="com.mogo.eagle.core.utilcode.util.UtilsTransActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:multiprocess="true"
android:theme="@style/ActivityTranslucent"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<provider
android:name="com.mogo.eagle.core.utilcode.util.UtilsFileProvider"
android:authorities="${applicationId}.utilcode.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/util_code_provider_paths" />
</provider>
<service
android:name="com.mogo.eagle.core.utilcode.util.MessengerUtils$ServerService"
android:exported="false">
<intent-filter>
<action android:name="${applicationId}.messenger" />
</intent-filter>
</service>
</application>
</manifest>