2018-06-05 21:51:08 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-05 23:08:46 +02:00
|
|
|
package="net.osmand.telegram">
|
2018-06-05 21:51:08 +02:00
|
|
|
|
2018-06-09 11:20:21 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2018-06-06 13:06:56 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2018-06-05 21:51:08 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2018-06-16 18:28:39 +02:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2018-06-05 21:51:08 +02:00
|
|
|
|
|
|
|
<application
|
2018-06-06 13:06:56 +02:00
|
|
|
android:name="net.osmand.telegram.TelegramApplication"
|
2018-06-05 21:51:08 +02:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:screenOrientation="unspecified"
|
|
|
|
android:supportsRtl="true"
|
2018-06-06 13:06:56 +02:00
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2018-06-11 12:41:43 +02:00
|
|
|
android:launchMode="singleTask"
|
2018-06-06 13:06:56 +02:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2018-06-05 21:51:08 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2018-06-06 13:06:56 +02:00
|
|
|
|
2018-06-05 21:51:08 +02:00
|
|
|
</activity>
|
|
|
|
|
2018-06-09 11:20:21 +02:00
|
|
|
<service
|
2018-06-11 18:57:33 +02:00
|
|
|
android:name=".TelegramService"
|
|
|
|
android:label="@string/process_service"
|
2018-06-11 12:41:43 +02:00
|
|
|
android:stopWithTask="false">
|
2018-06-09 11:20:21 +02:00
|
|
|
<intent-filter>
|
2018-06-11 18:57:33 +02:00
|
|
|
<action android:name="net.osmand.telegram.TelegramService" />
|
2018-06-09 11:20:21 +02:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2018-06-14 14:21:58 +02:00
|
|
|
<receiver android:name=".OnTelegramServiceAlarmReceiver" />
|
2018-06-14 20:01:10 +02:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="net.osmand.telegram.fileprovider"
|
|
|
|
android:grantUriPermissions="true"
|
|
|
|
android:exported="false">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/paths" />
|
|
|
|
</provider>
|
|
|
|
|
2018-06-05 21:51:08 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|