mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
anayltics works kinda
This commit is contained in:
parent
8bcd652802
commit
7818e6ccd9
5 changed files with 72 additions and 2 deletions
|
|
@ -12,11 +12,26 @@
|
|||
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- for job intent service -->
|
||||
|
||||
<!--
|
||||
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" />
|
||||
|
||||
<uses-feature
|
||||
android:name="android.hardware.bluetooth_le"
|
||||
android:required="true" />
|
||||
|
||||
<application
|
||||
android:name=".MeshUtilApplication"
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
|
|
@ -24,6 +39,9 @@
|
|||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
|
||||
<meta-data android:name="com.mixpanel.android.MPConfig.DisableViewCrawler"
|
||||
android:value="true" />
|
||||
|
||||
<!-- we need bind job service for oreo -->
|
||||
<service
|
||||
android:name=".SoftwareUpdateService"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
package com.geeksville.meshutil
|
||||
|
||||
import com.geeksville.android.GeeksvilleApplication
|
||||
|
||||
class MeshUtilApplication : GeeksvilleApplication(null, "58e72ccc361883ea502510baa46580e3") {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue