AndroidManifest.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:installLocation="internalOnly"
  5. android:testOnly="false">
  6. <uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
  7. <queries>
  8. <package android:name="com.hisilicon.android.hiRMService" />
  9. <intent>
  10. <action android:name="com.apptouch.intent.action.update_hms" />
  11. </intent>
  12. <intent>
  13. <action android:name="com.huawei.appmarket.intent.action.AppDetail" />
  14. </intent>
  15. <intent>
  16. <action android:name="com.huawei.hms.core.aidlservice" />
  17. </intent>
  18. <intent>
  19. <action android:name="com.huawei.hms.core" />
  20. </intent>
  21. </queries>
  22. <application tools:ignore="GoogleAppIndexingWarning">
  23. <activity
  24. android:name="com.DrmSDK.DrmDialogActivity"
  25. android:theme="@style/Theme.Threema.WithToolbar"/>
  26. <service
  27. android:name="ch.threema.app.push.PushService"
  28. android:exported="false">
  29. <intent-filter>
  30. <action android:name="com.huawei.push.action.MESSAGING_EVENT" />
  31. </intent-filter>
  32. </service>
  33. </application>
  34. </manifest>