mirror of
https://github.com/wrwrabbit/Partisan-Telegram-Android.git
synced 2026-05-24 22:14:04 +00:00
39 lines
No EOL
1.6 KiB
XML
39 lines
No EOL
1.6 KiB
XML
<?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="auto">
|
|
|
|
<uses-permission android:name="com.huawei.appmarket.service.commondata.permission.GET_COMMON_DATA"/>
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_REMOTE_MESSAGING" />
|
|
|
|
<queries>
|
|
<package android:name="com.huawei.maps.app"/>
|
|
</queries>
|
|
|
|
<application android:name="org.telegram.messenger.HuaweiApplicationLoader" tools:replace="name">
|
|
<service
|
|
android:name="org.telegram.messenger.GoogleVoiceClientService"
|
|
android:exported="true"
|
|
android:foregroundServiceType="dataSync"
|
|
/>
|
|
<activity
|
|
android:name="org.telegram.messenger.GoogleVoiceClientActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="com.google.android.voicesearch.SEND_MESSAGE_TO_CONTACTS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name="org.telegram.messenger.HuaweiPushListenerService"
|
|
android:exported="false"
|
|
android:foregroundServiceType="dataSync|remoteMessaging"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="com.huawei.push.action.MESSAGING_EVENT"/>
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
</manifest> |