forked from DrKLO/Telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
DrKLO
committed
Mar 30, 2017
1 parent
64e8ec3
commit 6a1cf64
Showing
2,641 changed files
with
151,932 additions
and
79,652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "TMessagesProj/jni/libtgvoip"] | ||
path = TMessagesProj/jni/libtgvoip | ||
url = https://github.com/grishka/libtgvoip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<?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" | ||
android:installLocation="auto"> | ||
|
||
<uses-feature android:name="android.hardware.location.gps" android:required="false" /> | ||
<uses-feature android:name="android.hardware.location.network" android:required="false" /> | ||
<uses-feature android:name="android.hardware.location" android:required="false" /> | ||
<uses-feature android:name="android.hardware.LOCATION" android:required="false" /> | ||
|
||
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> | ||
<uses-permission android:name="org.telegram.messenger.permission.MAPS_RECEIVE"/> | ||
<uses-permission android:name="org.telegram.messenger.permission.C2D_MESSAGE" /> | ||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.CALL_PHONE" /> | ||
<uses-permission android:name="android.permission.READ_CALL_LOG" /> | ||
<uses-permission android:name="android.permission.WRITE_CALL_LOG" /> | ||
|
||
<permission android:name="org.telegram.messenger.permission.MAPS_RECEIVE" android:protectionLevel="signature"/> | ||
<permission android:name="org.telegram.messenger.permission.C2D_MESSAGE" android:protectionLevel="signature" /> | ||
|
||
<application | ||
android:allowBackup="false" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/AppNameBeta" | ||
android:theme="@style/Theme.TMessages.Start" | ||
android:name=".ApplicationLoader" | ||
android:hardwareAccelerated="@bool/useHardwareAcceleration" | ||
android:largeHeap="true"> | ||
|
||
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyA-t0jLPjUt2FxrA8VPK2EiYHcYcboIR6k" /> | ||
|
||
<activity android:name="net.hockeyapp.android.UpdateActivity" /> | ||
|
||
<receiver | ||
android:name="com.google.android.gms.gcm.GcmReceiver" | ||
android:exported="true" | ||
android:permission="com.google.android.c2dm.permission.SEND" > | ||
<intent-filter> | ||
<action android:name="com.google.android.c2dm.intent.RECEIVE" /> | ||
<action android:name="com.google.android.c2dm.intent.REGISTRATION" /> | ||
<category android:name="org.telegram.messenger" /> | ||
</intent-filter> | ||
</receiver> | ||
<service | ||
android:name=".GcmPushListenerService" | ||
android:exported="false" > | ||
<intent-filter> | ||
<action android:name="com.google.android.c2dm.intent.RECEIVE" /> | ||
</intent-filter> | ||
</service> | ||
<service | ||
android:name=".GcmInstanceIDListenerService" | ||
android:exported="false"> | ||
<intent-filter> | ||
<action android:name="com.google.android.gms.iid.InstanceID" /> | ||
</intent-filter> | ||
</service> | ||
<service | ||
android:name=".GcmRegistrationIntentService" | ||
android:exported="false"> | ||
</service> | ||
|
||
<uses-library android:name="com.google.android.maps" android:required="false"/> | ||
|
||
|
||
<receiver | ||
tools:replace="android:enabled" | ||
android:name="com.google.android.gms.measurement.AppMeasurementReceiver" | ||
android:enabled="false"> | ||
<intent-filter> | ||
<action android:name="com.google.android.gms.measurement.UPLOAD" /> | ||
</intent-filter> | ||
</receiver> | ||
|
||
<service | ||
tools:replace="android:enabled" | ||
android:name="com.google.android.gms.measurement.AppMeasurementService" | ||
android:enabled="false" | ||
android:exported="false" /> | ||
|
||
</application> | ||
|
||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<?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" | ||
android:installLocation="auto"> | ||
|
||
<uses-feature android:name="android.hardware.location.gps" android:required="false" /> | ||
<uses-feature android:name="android.hardware.location.network" android:required="false" /> | ||
<uses-feature android:name="android.hardware.location" android:required="false" /> | ||
<uses-feature android:name="android.hardware.LOCATION" android:required="false" /> | ||
|
||
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> | ||
<uses-permission android:name="org.telegram.messenger.permission.MAPS_RECEIVE"/> | ||
<uses-permission android:name="org.telegram.messenger.permission.C2D_MESSAGE" /> | ||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.CALL_PHONE" /> | ||
<uses-permission android:name="android.permission.READ_CALL_LOG" /> | ||
<uses-permission android:name="android.permission.WRITE_CALL_LOG" /> | ||
|
||
<permission android:name="org.telegram.messenger.permission.MAPS_RECEIVE" android:protectionLevel="signature"/> | ||
<permission android:name="org.telegram.messenger.permission.C2D_MESSAGE" android:protectionLevel="signature" /> | ||
|
||
<application | ||
android:allowBackup="false" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/AppName" | ||
android:theme="@style/Theme.TMessages.Start" | ||
android:name=".ApplicationLoader" | ||
android:hardwareAccelerated="@bool/useHardwareAcceleration" | ||
android:largeHeap="true"> | ||
|
||
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyA-t0jLPjUt2FxrA8VPK2EiYHcYcboIR6k" /> | ||
|
||
<activity android:name="net.hockeyapp.android.UpdateActivity" /> | ||
|
||
<receiver | ||
android:name="com.google.android.gms.gcm.GcmReceiver" | ||
android:exported="true" | ||
android:permission="com.google.android.c2dm.permission.SEND" > | ||
<intent-filter> | ||
<action android:name="com.google.android.c2dm.intent.RECEIVE" /> | ||
<action android:name="com.google.android.c2dm.intent.REGISTRATION" /> | ||
<category android:name="org.telegram.messenger" /> | ||
</intent-filter> | ||
</receiver> | ||
<service | ||
android:name=".GcmPushListenerService" | ||
android:exported="false" > | ||
<intent-filter> | ||
<action android:name="com.google.android.c2dm.intent.RECEIVE" /> | ||
</intent-filter> | ||
</service> | ||
<service | ||
android:name=".GcmInstanceIDListenerService" | ||
android:exported="false"> | ||
<intent-filter> | ||
<action android:name="com.google.android.gms.iid.InstanceID" /> | ||
</intent-filter> | ||
</service> | ||
<service | ||
android:name=".GcmRegistrationIntentService" | ||
android:exported="false"> | ||
</service> | ||
|
||
<uses-library android:name="com.google.android.maps" android:required="false"/> | ||
|
||
<receiver | ||
tools:replace="android:enabled" | ||
android:name="com.google.android.gms.measurement.AppMeasurementReceiver" | ||
android:enabled="false"> | ||
<intent-filter> | ||
<action android:name="com.google.android.gms.measurement.UPLOAD" /> | ||
</intent-filter> | ||
</receiver> | ||
|
||
<service | ||
tools:replace="android:enabled" | ||
android:name="com.google.android.gms.measurement.AppMeasurementService" | ||
android:enabled="false" | ||
android:exported="false" /> | ||
|
||
</application> | ||
|
||
</manifest> |
Oops, something went wrong.