2022-03-14 09:53:00 +00:00
|
|
|
<?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="com.safemobile.dispatch"
|
|
|
|
android:versionCode="9"
|
|
|
|
android:versionName="1.0.9">
|
|
|
|
|
|
|
|
<!-- require OpenGL ES version 2 for Google Maps -->
|
|
|
|
<uses-feature
|
|
|
|
android:glEsVersion="0x00020000"
|
|
|
|
android:required="true" />
|
|
|
|
|
2022-03-21 17:39:55 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" android:required="false"/>
|
2022-03-14 09:53:00 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2022-03-21 17:39:55 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_GSERVICES" />
|
2022-03-14 09:53:00 +00:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2022-03-21 17:39:55 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2022-03-14 09:53:00 +00:00
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.autofocus"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.flash"
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.geo.API_KEY"
|
|
|
|
android:value="${MAPS_API_KEY}" />
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.version"
|
|
|
|
android:value="@integer/google_play_services_version" />
|
|
|
|
|
|
|
|
<service android:name="com.safemobile.services.TCPService" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".SDMobileActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/app_name_demo"
|
|
|
|
android:screenOrientation="landscape">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".SetupActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
|
|
android:name=".TabLayoutActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
|
|
android:name=".LiveActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:label="@string/title_activity_google_maps" />
|
|
|
|
<activity
|
|
|
|
android:name=".HistoryActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
|
|
android:name=".MessagesActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
|
|
android:name=".AlarmActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
|
|
android:name=".RadioActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
|
|
android:name=".RecordingsActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
|
|
android:name=".NotificationActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:screenOrientation="landscape" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|