mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 14:35:03 +01:00
31 lines
No EOL
1.3 KiB
XML
31 lines
No EOL
1.3 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"
|
|
package="org.telegram.messenger.huawei"
|
|
android:installLocation="auto">
|
|
|
|
<uses-permission android:name="com.huawei.appmarket.service.commondata.permission.GET_COMMON_DATA"/>
|
|
|
|
<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"/>
|
|
<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">
|
|
<intent-filter>
|
|
<action android:name="com.huawei.push.action.MESSAGING_EVENT"/>
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
</manifest> |