| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:installLocation="internalOnly"
- android:testOnly="false">
- <uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
- <queries>
- <package android:name="com.hisilicon.android.hiRMService" />
- <intent>
- <action android:name="com.apptouch.intent.action.update_hms" />
- </intent>
- <intent>
- <action android:name="com.huawei.appmarket.intent.action.AppDetail" />
- </intent>
- <intent>
- <action android:name="com.huawei.hms.core.aidlservice" />
- </intent>
- <intent>
- <action android:name="com.huawei.hms.core" />
- </intent>
- </queries>
- <application tools:ignore="GoogleAppIndexingWarning">
- <activity
- android:name="com.DrmSDK.DrmDialogActivity"
- android:theme="@style/Theme.Threema.WithToolbar"/>
- <service
- android:name="ch.threema.app.push.PushService"
- android:exported="false">
- <intent-filter>
- <action android:name="com.huawei.push.action.MESSAGING_EVENT" />
- </intent-filter>
- </service>
- </application>
- </manifest>
|