Meshtastic-Android/app/src/main/AndroidManifest.xml

70 lines
2.5 KiB
XML
Raw Normal View History

2020-01-20 15:53:22 -08:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2020-01-21 09:37:39 -08:00
package="com.geeksville.meshutil"
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="GoogleAppIndexingWarning">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <!-- only useful if this phone can do BTLE -->
2020-01-21 13:12:01 -08:00
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> <!-- needed to access bluetooth when app is background -->
2020-01-21 09:37:39 -08:00
<uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- for job intent service -->
2020-01-22 09:28:59 -08:00
<!--
This permission is required to allow the application to send
events and properties to Mixpanel.
-->
<uses-permission
android:name="android.permission.INTERNET" />
<!--
This permission is optional but recommended so we can be smart
about when to send data.
-->
<uses-permission
android:name="android.permission.ACCESS_NETWORK_STATE" />
2020-01-21 09:37:39 -08:00
<uses-feature
android:name="android.hardware.bluetooth_le"
android:required="true" />
2020-01-20 15:53:22 -08:00
<application
2020-01-22 09:28:59 -08:00
android:name=".MeshUtilApplication"
2020-01-20 15:53:22 -08:00
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
2020-01-20 16:13:40 -08:00
android:theme="@style/AppTheme">
2020-01-21 09:37:39 -08:00
2020-01-22 09:28:59 -08:00
<meta-data android:name="com.mixpanel.android.MPConfig.DisableViewCrawler"
android:value="true" />
2020-01-21 09:37:39 -08:00
<!-- we need bind job service for oreo -->
<service
android:name=".SoftwareUpdateService"
android:enabled="true"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE" />
2020-01-20 15:53:22 -08:00
<activity
android:name=".MainActivity"
android:label="@string/app_name"
2020-01-20 16:13:40 -08:00
android:theme="@style/AppTheme.NoActionBar">
2020-01-20 15:53:22 -08:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2020-01-21 09:37:39 -08:00
<receiver android:name=".BootCompleteReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
2020-01-20 15:53:22 -08:00
</application>
</manifest>