47 lines
No EOL
1.7 KiB
XML
47 lines
No EOL
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="net.osmand.telegram">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:name="net.osmand.telegram.TelegramApplication"
|
|
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"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:launchMode="singleTask"
|
|
android:configChanges="orientation|screenSize"
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<service
|
|
android:label="@string/process_location_service"
|
|
android:name="net.osmand.telegram.LocationService"
|
|
android:stopWithTask="true">
|
|
<intent-filter>
|
|
<action android:name="net.osmand.telegram.LocationService" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<receiver android:name=".notifications.NotificationDismissReceiver" />
|
|
</application>
|
|
|
|
</manifest> |